actix-web/actix-web-codegen/tests/trybuild/scope-on-handler.rs

9 lines
118 B
Rust

use actix_web_codegen::scope;
#[scope("/api")]
async fn index() -> &'static str {
"Hello World!"
}
fn main() {}