move macsuck/arpnip/discover to ::Core namespace

This commit is contained in:
Oliver Gorwits
2013-05-25 16:38:33 +01:00
parent be40788987
commit f830bc3a3b
6 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
package App::Netdisco::Util::Arpnip; package App::Netdisco::Core::Arpnip;
use Dancer qw/:syntax :script/; use Dancer qw/:syntax :script/;
use Dancer::Plugin::DBIC 'schema'; use Dancer::Plugin::DBIC 'schema';
@@ -17,7 +17,7 @@ our %EXPORT_TAGS = (all => \@EXPORT_OK);
=head1 NAME =head1 NAME
App::Netdisco::Util::Arpnip App::Netdisco::Core::Arpnip
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@@ -1,4 +1,4 @@
package App::Netdisco::Util::DiscoverAndStore; package App::Netdisco::Core::Discover;
use Dancer qw/:syntax :script/; use Dancer qw/:syntax :script/;
use Dancer::Plugin::DBIC 'schema'; use Dancer::Plugin::DBIC 'schema';
@@ -19,7 +19,7 @@ our %EXPORT_TAGS = (all => \@EXPORT_OK);
=head1 NAME =head1 NAME
App::Netdisco::Util::DiscoverAndStore App::Netdisco::Core::Discover
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@@ -1,4 +1,4 @@
package App::Netdisco::Util::Macsuck; package App::Netdisco::Core::Macsuck;
use Dancer qw/:syntax :script/; use Dancer qw/:syntax :script/;
use Dancer::Plugin::DBIC 'schema'; use Dancer::Plugin::DBIC 'schema';
@@ -14,7 +14,7 @@ our %EXPORT_TAGS = (all => \@EXPORT_OK);
=head1 NAME =head1 NAME
App::Netdisco::Util::Macsuck App::Netdisco::Core::Macsuck
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@@ -5,7 +5,7 @@ use Dancer::Plugin::DBIC 'schema';
use App::Netdisco::Util::SNMP 'snmp_connect'; use App::Netdisco::Util::SNMP 'snmp_connect';
use App::Netdisco::Util::Device 'get_device'; use App::Netdisco::Util::Device 'get_device';
use App::Netdisco::Util::Arpnip ':all'; use App::Netdisco::Core::Arpnip ':all';
use App::Netdisco::Daemon::Util ':all'; use App::Netdisco::Daemon::Util ':all';
use NetAddr::IP::Lite ':lower'; use NetAddr::IP::Lite ':lower';

View File

@@ -5,7 +5,7 @@ use Dancer::Plugin::DBIC 'schema';
use App::Netdisco::Util::SNMP 'snmp_connect'; use App::Netdisco::Util::SNMP 'snmp_connect';
use App::Netdisco::Util::Device 'get_device'; use App::Netdisco::Util::Device 'get_device';
use App::Netdisco::Util::DiscoverAndStore ':all'; use App::Netdisco::Core::Discover ':all';
use App::Netdisco::Daemon::Util ':all'; use App::Netdisco::Daemon::Util ':all';
use NetAddr::IP::Lite ':lower'; use NetAddr::IP::Lite ':lower';

View File

@@ -5,7 +5,7 @@ use Dancer::Plugin::DBIC 'schema';
use App::Netdisco::Util::SNMP 'snmp_connect'; use App::Netdisco::Util::SNMP 'snmp_connect';
use App::Netdisco::Util::Device 'get_device'; use App::Netdisco::Util::Device 'get_device';
use App::Netdisco::Util::Macsuck ':all'; use App::Netdisco::Core::Macsuck ':all';
use App::Netdisco::Daemon::Util ':all'; use App::Netdisco::Daemon::Util ':all';
use NetAddr::IP::Lite ':lower'; use NetAddr::IP::Lite ':lower';