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/Model/DB/Base.pm

15 lines
262 B

package NGCP::Panel::Model::DB::Base;
use base 'Catalyst::Model::Adaptor';
use NGCP::Panel::Model::DB;
use Moose;
__PACKAGE__->config(
class => __PACKAGE__ ,
args => {},
);
has 'schema' => (
is => 'rw',
isa => 'NGCP::Panel::Model::DB',
);
1;