server-less 0.5.0

Composable derive macros for common Rust patterns
Documentation
1
2
3
4
5
6
7
use server_less::cli;

// #[cli] applied to an empty impl block should produce a meaningful error.
#[cli]
impl MyApp {}

fn main() {}