desert_framework 0.1.3

Micro-framework for building backend applications in Rust with Axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate self as desert_framework;

pub mod controller;
pub mod dependency;
pub mod macros;
pub mod manager;
pub mod route;
pub mod service;
pub mod test;

pub use controller::ControllerRoutes;
pub use desert_framework_macros::*;
pub use inventory;
pub use route::RouteEntry;