mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-01-06 13:17:48 +03:00
1f79cc8cea
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
16 lines
282 B
Perl
Executable File
16 lines
282 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PVE::RESTHandler;
|
|
use PVE::API2;
|
|
use JSON;
|
|
|
|
|
|
my $tree = PVE::RESTHandler::api_dump_remove_refs(PVE::RESTHandler::api_dump('PVE::API2'));
|
|
|
|
print "const apiSchema = " . to_json($tree, {pretty => 1, canonical => 1}) . ";\n\n";
|
|
|
|
exit(0);
|