mirror of
https://github.com/actix/examples
synced 2025-01-23 06:14:35 +01:00
29 lines
698 B
Rust
29 lines
698 B
Rust
use actix_web::{get, middleware::Logger, App, HttpResponse, HttpServer, Responder};
|
|
|
|
#[get("/")]
|
|
async fn index() -> impl Responder {
|
|
HttpResponse::Ok().body("Hello world!")
|
|
}
|
|
|
|
#[get("/again")]
|
|
async fn again() -> impl Responder {
|
|
HttpResponse::Ok().body("Hello world again!")
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
|
|
|
log::info!("Starting HTTP server: go to http://localhost:8080");
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.wrap(Logger::default())
|
|
.service(index)
|
|
.service(again)
|
|
})
|
|
.bind(("0.0.0.0", 8080))?
|
|
.run()
|
|
.await
|
|
}
|