actix-macros 0.2.2

Macros for Actix system and runtime
Documentation
mod system {
    pub use actix_rt::System as MySystem;
}

#[actix_rt::main(system = "system::MySystem")]
async fn main() {
    futures_util::future::ready(()).await
}