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

add HttpServer::register() function, allows to register services in actix net server

This commit is contained in:
Nikolay Kim
2018-09-28 16:03:53 -07:00
parent 4aac3d6a92
commit 5966ee6192
5 changed files with 59 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#[cfg(any(feature = "alpn", feature = "ssl"))]
mod openssl;
#[cfg(any(feature = "alpn", feature = "ssl"))]
pub use self::openssl::*;
pub use self::openssl::{openssl_acceptor_with_flags, OpensslAcceptor};
#[cfg(feature = "tls")]
mod nativetls;