]> git.proxmox.com Git - pve-access-control.git/commitdiff
split and sort some module use
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 21 Mar 2020 15:04:44 +0000 (16:04 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 21 Mar 2020 15:21:57 +0000 (16:21 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/Domains.pm
PVE/Auth/Plugin.pm

index 23db19b183ccbe01fd5c53923867e756e3e5f335..8ae1db08d4a58facc7ddcbbbb193a1362da5a836 100644 (file)
@@ -2,6 +2,7 @@ package PVE::API2::Domains;
 
 use strict;
 use warnings;
+
 use PVE::Exception qw(raise_param_exc);
 use PVE::Tools qw(extract_param);
 use PVE::Cluster qw (cfs_read_file cfs_write_file);
index 5272ef5c657a1416605bb2ff211f7e19cf606bc8..7a08d2797e62cf88f38689d1e25b54d40007864d 100755 (executable)
@@ -2,12 +2,14 @@ package PVE::Auth::Plugin;
 
 use strict;
 use warnings;
-use Encode;
+
 use Digest::SHA;
-use PVE::Tools;
-use PVE::SectionConfig;
-use PVE::JSONSchema qw(get_standard_option);
+use Encode;
+
 use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_lock_file);
+use PVE::JSONSchema qw(get_standard_option);
+use PVE::SectionConfig;
+use PVE::Tools;
 
 use base qw(PVE::SectionConfig);