mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 03:42:59 +01:00
9 lines
167 B
Rust
9 lines
167 B
Rust
mod system {
|
|
pub use actix_rt::System as MySystem;
|
|
}
|
|
|
|
#[actix_rt::main(system = "system::MySystem")]
|
|
async fn main() {
|
|
futures_util::future::ready(()).await
|
|
}
|