mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-01-03 01:17:49 +03:00
14 lines
242 B
Perl
Executable File
14 lines
242 B
Perl
Executable File
#!/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', 'arg');
|
|
|
|
print $data;
|