lakka 0.1.0

Simple actors with macros
Documentation
use lakka::messages;

struct Actor;

#[messages]
impl Actor {
    fn test(&self) {
        println!("test");
    }

    fn get(&self) -> u32 {
        15
    }
}

#[tokio::main]
async fn main() {
    let _ = Actor;
    //let handle = test.run();
    //_ = handle.test().await;
    //_ = handle.get().await;
}