]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/RESTHandler.pm
rest handler: group and sort use statements
[pve-common.git] / src / PVE / RESTHandler.pm
index 6fd70c84df5caaa9904f0a52603fdf50be7118e0..6433659f373ad2f2052cf193e7d70cbf27cb762d 100644 (file)
@@ -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 = {};