diff --git a/lib/NGCP/InterceptSchema.pm b/lib/NGCP/InterceptSchema.pm new file mode 100644 index 00000000..5a41e6b5 --- /dev/null +++ b/lib/NGCP/InterceptSchema.pm @@ -0,0 +1,13 @@ +package NGCP::InterceptSchema; +use Moose; +extends 'NGCP::Schema'; + +our $VERSION = '2.007'; + +sub connection { + my ($self) = @_; + $self->SUPER::connection($self->config->as_hash->{ngcp_intercept_connect_info}); +} + +no Moose; +1; diff --git a/lib/NGCP/RoSchema.pm b/lib/NGCP/RoSchema.pm deleted file mode 100644 index 31b94b13..00000000 --- a/lib/NGCP/RoSchema.pm +++ /dev/null @@ -1,13 +0,0 @@ -package NGCP::RoSchema; -use Moose; -extends 'NGCP::Schema'; - -our $VERSION = '2.007'; - -sub connection { - my ($self) = @_; - $self->SUPER::connection($self->config->as_hash->{ngcp_ro_connect_info}); -} - -no Moose; -1;