proxmox/proxmox-api-macro/tests/api2.rs
Wolfgang Bumiller 4de409c526 api-macro: support hyphenated parameter names
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2019-12-03 13:34:37 +01:00

19 lines
338 B
Rust

use proxmox_api_macro::api;
use failure::Error;
#[api(
input: {
properties: {
message: {
description: "The message to print",
}
}
}
)]
/// Print the given message.
pub fn hello(message: String) -> Result<(), Error> {
println!("Hello there. {}", message);
Ok(())
}