From 0827edde8ff6feba2541a87fb7ed02c31061e6f5 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 17 Jun 2023 13:51:09 +0200 Subject: [PATCH] rest handler: group and sort use statements Signed-off-by: Thomas Lamprecht --- src/PVE/RESTHandler.pm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/PVE/RESTHandler.pm b/src/PVE/RESTHandler.pm index 6fd70c8..6433659 100644 --- a/src/PVE/RESTHandler.pm +++ b/src/PVE/RESTHandler.pm @@ -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 = {};