nidus-rs 1.0.15

Public facade crate for the Nidus modular Rust backend framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use nidus::prelude::*;

#[controller("/users")]
struct UsersController;

#[routes]
impl UsersController {
    #[get("/:id")]
    async fn find_one(&self) {}
}

fn main() {}