blob: dd03ecea2991a37f05fa83202b0ca81f579a6ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
use actix_web::{get, web, App, HttpResponse, HttpServer, Responder, http::header::ContentType};
use macroblog::blog::{render_index_page, render_post_page};
#[get("/")]
async fn index() -> impl Responder {
let body = render_index_page();
HttpResponse::Ok()
.content_type(ContentType::html())
.body(body)
}
#[get("/posts/{name}")]
async fn posts(name: web::Path<String>) -> impl Responder {
let body = render_post_page(&name);
HttpResponse::Ok()
.content_type(ContentType::html())
.body(body)
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.service(index)
.service(posts)
})
.bind(("0.0.0.0", 3000))?
.run()
.await
}
|