1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 17:07:01 +02:00

add server management commands

This commit is contained in:
Nikolay Kim
2017-12-27 12:58:32 -08:00
parent da8aa8b988
commit 0589f2ee49
4 changed files with 196 additions and 57 deletions

View File

@@ -71,8 +71,8 @@ extern crate brotli2;
extern crate percent_encoding;
extern crate smallvec;
extern crate num_cpus;
extern crate actix;
extern crate h2 as http2;
#[macro_use] extern crate actix;
#[cfg(test)]
#[macro_use] extern crate serde_derive;
@@ -173,7 +173,8 @@ pub mod dev {
pub use pipeline::Pipeline;
pub use channel::{HttpChannel, HttpHandler, IntoHttpHandler};
pub use param::{FromParam, Params};
pub use server::ServerSettings;
pub use httprequest::UrlEncoded;
pub use httpresponse::HttpResponseBuilder;
pub use server::{ServerSettings, PauseServer, ResumeServer, StopServer};
}