]> git.proxmox.com Git - pve-client.git/commitdiff
list.pm: add missing use clauses
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 14 Jun 2018 07:31:53 +0000 (09:31 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 14 Jun 2018 07:31:53 +0000 (09:31 +0200)
PVE/APIClient/Commands/list.pm

index 2190ad6346ffbb6c3a40b8eed8f2d57a801160d1..db00da71256ffcdb78cd0bcea081f570db67c446 100644 (file)
@@ -6,6 +6,9 @@ use JSON;
 
 use PVE::APIClient::JSONSchema qw(get_standard_option);
 
+use PVE::APIClient::Config;
+use PVE::APIClient::CLIHandler;
+
 use base qw(PVE::APIClient::CLIHandler);
 
 __PACKAGE__->register_method ({
@@ -55,4 +58,4 @@ __PACKAGE__->register_method ({
 
 our $cmddef = [ __PACKAGE__, 'list', ['remote']];
 
-1;
\ No newline at end of file
+1;