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/InterceptSchema.pm

17 lines
294 B

package NGCP::InterceptSchema;
use strict;
use warnings;
use parent 'NGCP::Schema';
our $VERSION = '2.007';
sub connection {
my ($self) = @_;
my $full_config = NGCP::Schema::Config::get_config_hash();
$self->SUPER::connection($full_config->{ngcp_intercept_connect_info});
}
1;