rocket_codegen 0.5.1

Procedural macros for the Rocket web framework.
Documentation
1
2
3
4
5
6
7
8
#[macro_use] extern crate rocket;

fn main() {
    let _ = routes![a b];
    let _ = routes![];
    let _ = routes![a::, ];
    let _ = routes![a::];
}