Rocket/lib/src/codegen.rs

10 lines
152 B
Rust
Raw Normal View History

use method::Method;
use handler::Handler;
pub struct StaticRouteInfo {
pub method: Method,
pub path: &'static str,
pub handler: Handler
}