]> git.proxmox.com Git - pve-manager.git/commitdiff
api vzdump: split/sort module usage
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 15 Nov 2022 12:48:51 +0000 (13:48 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 15 Nov 2022 13:07:39 +0000 (14:07 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/VZDump.pm

index 024d332bee5bb13096c4826aff9d145b406695d9..30d47825a7d80abb53ff18d23ed2a4a5f3a53649 100644 (file)
@@ -2,21 +2,22 @@ package PVE::API2::VZDump;
 
 use strict;
 use warnings;
+
+use PVE::AccessControl;
+use PVE::Cluster;
 use PVE::Exception qw(raise_param_exc);
-use PVE::Tools qw(extract_param);
-use PVE::Cluster qw(cfs_register_file cfs_read_file);
 use PVE::INotify;
-use PVE::RPCEnvironment;
-use PVE::AccessControl;
 use PVE::JSONSchema qw(get_standard_option);
+use PVE::RPCEnvironment;
 use PVE::Storage;
-use PVE::VZDump;
+use PVE::Tools qw(extract_param);
 use PVE::VZDump::Common;
+use PVE::VZDump;
+
 use PVE::API2Tools;
 
 use Data::Dumper; # fixme: remove
 
-
 use base qw(PVE::RESTHandler);
 
 __PACKAGE__->register_method ({