1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-25 21:46:01 +02:00

Allow to run future before server service initialization

This commit is contained in:
Nikolay Kim
2019-03-14 20:09:34 -07:00
parent f3aa48309f
commit d23dc6f6af
4 changed files with 43 additions and 6 deletions

View File

@@ -2,9 +2,9 @@
mod accept;
mod builder;
mod config;
mod counter;
mod server;
mod service_config;
mod services;
mod signals;
pub mod ssl;
@@ -13,8 +13,8 @@ mod worker;
pub use actix_server_config::{Io, Protocol, ServerConfig};
pub use self::builder::ServerBuilder;
pub use self::config::{ServiceConfig, ServiceRuntime};
pub use self::server::Server;
pub use self::service_config::{ServiceConfig, ServiceRuntime};
pub use self::services::ServiceFactory;
#[doc(hidden)]