summaryrefslogtreecommitdiff
path: root/FS/FS/Cron/nms_report.pm
blob: 8c8ca7e35734a1e5f25f301e47b324f2b0a13283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package FS::Cron::nms_report;

use strict;
use base 'Exporter';
use FS::Conf;
use FS::NetworkMonitoringSystem;

our @EXPORT_OK = qw( nms_report );

sub nms_report {
  #my %opt = @_;

  my $conf = new FS::Conf;
  return unless $conf->config('network_monitoring_system');

  my $nms = new FS::NetworkMonitoringSystem;
  $nms->report; #(%opt);

}

1;