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-schema/lib/NGCP/CentralSchema.pm

14 lines
227 B

package NGCP::CentralSchema;
use Moose;
extends 'NGCP::Schema';
our $VERSION = '2.007';
sub connection {
my ($self) = @_;
$self->SUPER::connection($self->config->as_hash->{ngcp_central_connect_info});
}
no Moose;
1;