You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Widget/Plugin/PeeringOverview.pm

19 lines
320 B

package NGCP::Panel::Widget::Plugin::PeeringOverview;
use Moose::Role;
has 'template' => (
is => 'ro',
isa => 'Str',
default => 'widgets/peering_overview.tt'
);
around handle => sub {
my ($self, $c) = @_;
print "++++ PeeringOverview::handle\n";
return;
};
1;
# vim: set tabstop=4 expandtab: