mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-01-06 13:17:48 +03:00
14 lines
245 B
Perl
14 lines
245 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use lib '.';
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use PVE::JSONSchema;
|
||
|
use PVE::RESTHandler;
|
||
|
|
||
|
my $prop = $PVE::RESTHandler::standard_output_options;
|
||
|
|
||
|
my $data = PVE::RESTHandler::dump_properties($prop, 'asciidoc', 'config');
|
||
|
|
||
|
print $data;
|