]> git.proxmox.com Git - pve-common.git/commitdiff
rest handler: group and sort use statements
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 17 Jun 2023 11:51:09 +0000 (13:51 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 17 Jun 2023 11:51:09 +0000 (13:51 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
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 = {};