better name for util package

This commit is contained in:
Oliver Gorwits
2013-04-13 19:47:23 +01:00
parent 4546036f4f
commit 8228e73f5b
4 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
package App::Netdisco::Daemon::Worker::Interactive::Util;
package App::Netdisco::Daemon::Util;
# support utilities for Daemon Actions

View File

@@ -1,8 +1,8 @@
package App::Netdisco::Daemon::Worker::Interactive::DeviceActions;
use App::Netdisco::Util::SNMP ':all';
use App::Netdisco::Util::SNMP 'snmp_connect_rw';
use App::Netdisco::Util::Device 'get_device';
use App::Netdisco::Daemon::Worker::Interactive::Util ':all';
use App::Netdisco::Daemon::Util ':all';
use Role::Tiny;
use namespace::clean;

View File

@@ -1,8 +1,8 @@
package App::Netdisco::Daemon::Worker::Interactive::PortActions;
use App::Netdisco::Util::SNMP ':all';
use App::Netdisco::Util::Port ':all';
use App::Netdisco::Daemon::Worker::Interactive::Util ':all';
use App::Netdisco::Util::SNMP 'snmp_connect_rw';
use App::Netdisco::Daemon::Util ':all';
use Role::Tiny;
use namespace::clean;

View File

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