mirror of
https://github.com/actix/actix-website
synced 2025-02-02 20:29:03 +01:00
15 lines
357 B
Rust
15 lines
357 B
Rust
|
// <chunked>
|
||
|
// 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",
|
||
|
// ))))))
|
||
|
// }
|
||
|
// </chunked>
|
||
|
fn main() {}
|