#![allow(unused_imports)]
use rovo::aide::axum::IntoApiResponse;
use rovo::response::Json;
use rovo::rovo;
/// Test handler with invalid example
///
/// # Examples
///
/// 200: This is not valid Rust code!!!
#[rovo]
async fn test_handler() -> impl IntoApiResponse {
Json("test".to_string())
}
fn main() {}