8ecd7c9c21
they're required for docs Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
15 lines
235 B
Rust
15 lines
235 B
Rust
use anyhow::{Error};
|
|
|
|
use proxmox::api::format::dump_api;
|
|
|
|
use proxmox_backup::api2;
|
|
|
|
fn main() -> Result<(), Error> {
|
|
|
|
let api = api2::reader::READER_API_ROUTER;
|
|
|
|
dump_api(&mut std::io::stdout(), &api, ".", 0)?;
|
|
|
|
Ok(())
|
|
}
|