]> git.proxmox.com Git - pve-manager.git/commitdiff
proxy: group and sort use statements
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 18 Apr 2023 06:20:51 +0000 (08:20 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 18 Apr 2023 06:20:51 +0000 (08:20 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/Service/pveproxy.pm

index 7b305f76026bb66b40df9a1d1a92d6da59647dab..7ea1d32e9b13e1a9cdc8b35e702873418099e986 100755 (executable)
@@ -3,26 +3,25 @@ package PVE::Service::pveproxy;
 use strict;
 use warnings;
 
-use PVE::SafeSyslog;
-use PVE::Daemon;
-use HTTP::Response;
+use Data::Dumper;
 use Encode;
-use URI;
+use HTTP::Response;
+use Template;
 use URI::QueryParam;
-use Data::Dumper;
-use PVE::Cluster;
-use PVE::DataCenterConfig;
-use PVE::APIServer::Utils;
+use URI;
+
 use PVE::API2;
-use PVE::APIServer::Formatter;
-use PVE::APIServer::Formatter::Standard;
-use PVE::APIServer::Formatter::HTML;
 use PVE::APIServer::AnyEvent;
+use PVE::APIServer::Formatter::HTML;
+use PVE::APIServer::Formatter::Standard;
+use PVE::APIServer::Formatter;
+use PVE::APIServer::Utils;
+use PVE::Cluster;
+use PVE::Daemon;
+use PVE::DataCenterConfig;
 use PVE::HTTPServer;
+use PVE::SafeSyslog;
 use PVE::pvecfg;
-
-use Template;
-
 use PVE::Tools;
 
 use base qw(PVE::Daemon);