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/Catalyst/Plugin/NGCP/EscapeURI.pm

14 lines
224 B

package Catalyst::Plugin::NGCP::EscapeURI;
use warnings;
use strict;
use MRO::Compat;
use NGCP::Panel::Utils::Generic qw();
sub escape_uri {
my $c = shift;
return NGCP::Panel::Utils::Generic::escape_uri(@_);
}
1;