X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;ds=sidebyside;f=src%2FPVE%2FRESTHandler.pm;fp=src%2FPVE%2FRESTHandler.pm;h=6433659f373ad2f2052cf193e7d70cbf27cb762d;hb=0827edde8ff6feba2541a87fb7ed02c31061e6f5;hp=6fd70c84df5caaa9904f0a52603fdf50be7118e0;hpb=a51ba95b7834dd0c8ba1eda5344bd071ed29edf3;p=pve-common.git diff --git a/src/PVE/RESTHandler.pm b/src/PVE/RESTHandler.pm index 6fd70c8..6433659 100644 --- a/src/PVE/RESTHandler.pm +++ b/src/PVE/RESTHandler.pm @@ -2,13 +2,15 @@ package PVE::RESTHandler; use strict; use warnings; -use PVE::SafeSyslog; + +use Clone qw(clone); +use HTTP::Status qw(:constants :is status_message); +use Text::Wrap; + use PVE::Exception qw(raise raise_param_exc); use PVE::JSONSchema; +use PVE::SafeSyslog; use PVE::Tools; -use HTTP::Status qw(:constants :is status_message); -use Text::Wrap; -use Clone qw(clone); my $method_registry = {}; my $method_by_name = {};