1
0
mirror of https://github.com/actix/actix-website synced 2025-01-23 00:25:55 +01:00
2018-07-21 05:21:41 -07:00

17 lines
487 B
Rust

// <ext>
use actix_web::{App, Error, HttpRequest, HttpResponse};
fn index(req: &HttpRequest) -> Result<HttpResponse, Error> {
let url = req.url_for("youtube", &["oHg5SJYRHA0"])?;
assert_eq!(url.as_str(), "https://youtube.com/watch/oHg5SJYRHA0");
Ok(HttpResponse::Ok().into())
}
fn main() {
let app = App::new()
.resource("/index.html", |r| r.f(index))
.external_resource("youtube", "https://youtube.com/watch/{video_id}")
.finish();
}
// </ext>