The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Dancer ':syntax';
use Dancer::Plugin::DBIC 'schema';
use App::Netdisco::Util::PortAccessEntity qw/update_pae_attributes/;
register_worker({ phase => 'main', driver => 'snmp' }, sub {
my ($job, $workerconf) = @_;
my $device = $job->device;
return update_pae_attributes($device)
});
true;