pub mod auto; pub mod brotli; pub mod chunked; pub mod compress; pub mod identity; pub mod identity_two; pub mod json_resp; // use actix_web::HttpResponse; fn index() -> HttpResponse { HttpResponse::Ok() .content_type("plain/text") .header("X-Hdr", "sample") .body("data") } // pub fn main() { use actix_web::{web, App, HttpServer}; HttpServer::new(|| App::new().route("/", web::get().to(index))) .bind("127.0.0.1:8088") .unwrap() .run() .unwrap(); }