Rocket/core/codegen/tests/async-routes.rs
Sergio Benitez 48c333721c Use 'async_trait' for 'Fairing' trait.
Also re-exports the 'async_trait' attribute from 'rocket'.
2020-07-11 09:24:29 -07:00

21 lines
402 B
Rust

#![feature(proc_macro_hygiene)]
#![allow(dead_code)]
#[macro_use] extern crate rocket;
use rocket::http::uri::Origin;
use rocket::request::Request;
async fn noop() { }
#[get("/")]
async fn hello(_origin: &Origin<'_>) -> &'static str {
noop().await;
"Hello, world!"
}
#[catch(404)]
async fn not_found(req: &Request<'_>) -> String {
noop().await;
format!("{} not found", req.uri())
}