kb-common 0.0.1

Some common code I use in my apps. Use at your own risk.
Documentation
1
2
3
4
5
6
#[macro_export]
macro_rules! hello {
    () => {
        println!("Hello World !");
    };
}