projects
/
pve-client.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
use SectionConfig for PVE::APIClient::Config
[pve-client.git]
/
extractapi.pl
Commit
Line
Data
8ef77d25
DM
1
#!/usr/bin/perl
2
3
use strict;
4
use warnings;
5
6
use PVE::RESTHandler;
7
use PVE::API2;
8
use JSON;
9
10
my $tree = PVE::RESTHandler::api_dump_remove_refs(PVE::RESTHandler::api_dump('PVE::API2'));
11
print to_json($tree, {pretty => 1, canonical => 1}) . "\n";
12
13
exit(0);