desert_framework 0.1.0

Micro-framework for building backend applications in Rust with Axum
Documentation
1
2
3
4
pub trait Controller {
    type State: Send + Sync + 'static;
    fn register_routes(self) -> axum::Router<Self::State>;
}