From: Dietmar Maurer Date: Thu, 14 Jun 2018 07:31:53 +0000 (+0200) Subject: list.pm: add missing use clauses X-Git-Url: https://git.proxmox.com/?p=pve-client.git;a=commitdiff_plain;h=ef03892d0c7f134cb78f283e9a41daa2a9e026b2 list.pm: add missing use clauses --- diff --git a/PVE/APIClient/Commands/list.pm b/PVE/APIClient/Commands/list.pm index 2190ad6..db00da7 100644 --- a/PVE/APIClient/Commands/list.pm +++ b/PVE/APIClient/Commands/list.pm @@ -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;