rustminidb 0.1.0

A lightweight embedded database with native REST API
1
2
3
4
5
6
7
8
9
10
11
12
//! REST API 服务器模块
//!
//! 基于 axum 框架,提供 REST API 接口。

pub mod auth;
pub mod error;
pub mod handlers;
pub mod metrics;
pub mod routes;

pub use error::AppState;
pub use routes::build_routes;