mll-axum-utils 0.1.0

一个 Axum 的工具库
Documentation
1
2
3
4
5
6
7
8
pub mod ip_addrs;
pub mod middleware;
pub mod res;
pub mod validation;

use res::Res;
use std::result;
pub type Result<T> = result::Result<Res<T>, Res<()>>;