2019-06-28 13:31:30 -04:00
|
|
|
// // <chunked>
|
2019-06-17 15:15:33 -04:00
|
|
|
// use actix_web::{web, HttpRequest, HttpResponse};
|
|
|
|
// use bytes::Bytes;
|
|
|
|
// use futures::stream::once;
|
|
|
|
|
|
|
|
// fn index(req: HttpRequest) -> HttpResponse {
|
|
|
|
// HttpResponse::Ok()
|
|
|
|
// .chunked()
|
|
|
|
// .body(Body::Streaming(Box::new(once(Ok(Bytes::from_static(
|
|
|
|
// b"data",
|
|
|
|
// ))))))
|
|
|
|
// }
|
2019-06-28 13:31:30 -04:00
|
|
|
// // </chunked>
|
2019-06-26 01:58:47 -04:00
|
|
|
|
|
|
|
// 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();
|
|
|
|
// }
|