1 2 3 4 5 6 7
shuttle_codegen::app! { #[shuttle_codegen::endpoint(method = get, route = "/hello")] #[shuttle_codegen::endpoint(method = post, route = "/hello")] async fn hello() -> &'static str { "Hello, World!" } }