1
0
mirror of https://github.com/actix/actix-website synced 2025-02-02 12:19:04 +01:00

17 lines
487 B
Rust
Raw Normal View History

2018-05-24 10:13:55 -07:00
// <ext>
use actix_web::{App, Error, HttpRequest, HttpResponse};
2018-07-21 05:21:41 -07:00
fn index(req: &HttpRequest) -> Result<HttpResponse, Error> {
2018-05-24 10:13:55 -07:00
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>