This commit was generated by cvs2svn to compensate for changes in r11022,
[freeside.git] / FS / FS / Cron / nms_report.pm
1 package FS::Cron::nms_report;
2
3 use strict;
4 use base 'Exporter';
5 use FS::Conf;
6 use FS::NetworkMonitoringSystem;
7
8 our @EXPORT_OK = qw( nms_report );
9
10 sub nms_report {
11   #my %opt = @_;
12
13   my $conf = new FS::Conf;
14   return unless $conf->config('network_monitoring_system');
15
16   my $nms = new FS::NetworkMonitoringSystem;
17   $nms->report; #(%opt);
18
19 }
20
21 1;