1 2 3 4 5 6 7 8 9 10 11 12
use server_less::http; struct MyService; #[http(invalid_arg = true)] impl MyService { pub fn hello(&self) -> String { "hello".into() } } fn main() {}