diff --git a/proxmox-api-macro/tests/api1.rs b/proxmox-api-macro/tests/api1.rs index cd988855..9770abd7 100644 --- a/proxmox-api-macro/tests/api1.rs +++ b/proxmox-api-macro/tests/api1.rs @@ -100,3 +100,14 @@ pub fn some_call(verbose: bool) -> Result<(), Error> { let _ = verbose; Ok(()) } + +#[api( + input: { + properties: {} + }, +)] +/// Basic function +pub fn basic_function() -> Result<(), Error> { + let _ = verbose; + Ok(()) +}