]> git.proxmox.com Git - pve-storage.git/commitdiff
api: status: sort/cleanup module use-statements
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Jul 2021 09:55:26 +0000 (11:55 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 29 Jul 2021 15:12:40 +0000 (17:12 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/Storage/Status.pm

index 16581aacf5c93b5be7dd56b56eaa843eba041456..796ab6699b996763264161013dd346e53db2ab68 100644 (file)
@@ -3,20 +3,22 @@ package PVE::API2::Storage::Status;
 use strict;
 use warnings;
 
-use File::Path;
 use File::Basename;
-use PVE::Tools;
-use PVE::INotify;
+use File::Path;
+
 use PVE::Cluster;
+use PVE::Exception qw(raise_param_exc);
+use PVE::INotify;
+use PVE::JSONSchema qw(get_standard_option);
+use PVE::RESTHandler;
+use PVE::RPCEnvironment;
 use PVE::RRD;
-use PVE::Storage;
+use PVE::Tools;
+
 use PVE::API2::Storage::Content;
-use PVE::API2::Storage::PruneBackups;
 use PVE::API2::Storage::FileRestore;
-use PVE::RESTHandler;
-use PVE::RPCEnvironment;
-use PVE::JSONSchema qw(get_standard_option);
-use PVE::Exception qw(raise_param_exc);
+use PVE::API2::Storage::PruneBackups;
+use PVE::Storage;
 
 use base qw(PVE::RESTHandler);