1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-28 02:49:02 +02:00

move encoding to server

This commit is contained in:
Nikolay Kim
2018-01-11 18:41:33 -08:00
parent 8a058efb4e
commit ac89880c0a
8 changed files with 25 additions and 26 deletions

View File

@ -16,12 +16,12 @@ use tokio_core::reactor::Timeout;
use pipeline::Pipeline;
use error::PayloadError;
use encoding::PayloadType;
use httpcodes::HTTPNotFound;
use httprequest::HttpRequest;
use payload::{Payload, PayloadWriter};
use super::h2writer::H2Writer;
use super::encoding::PayloadType;
use super::settings::WorkerSettings;
use super::{HttpHandler, HttpHandlerTask};