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