mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-03 16:22:37 +00:00
14 lines
184 B
Rust
14 lines
184 B
Rust
#![feature(plugin, decl_macro)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get("/")]
|
|
fn get() -> &'static str { "hi" }
|
|
|
|
#[get("/")]
|
|
fn get_empty() { }
|
|
|
|
#[test]
|
|
fn main() { }
|