rest handler: group and sort use statements

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-06-17 13:51:09 +02:00
parent a51ba95b78
commit 0827edde8f

View File

@ -2,13 +2,15 @@ package PVE::RESTHandler;
use strict;
use warnings;
use PVE::SafeSyslog;
use PVE::Exception qw(raise raise_param_exc);
use PVE::JSONSchema;
use PVE::Tools;
use Clone qw(clone);
use HTTP::Status qw(:constants :is status_message);
use Text::Wrap;
use Clone qw(clone);
use PVE::Exception qw(raise raise_param_exc);
use PVE::JSONSchema;
use PVE::SafeSyslog;
use PVE::Tools;
my $method_registry = {};
my $method_by_name = {};