vyuh 0.2.9

Vyuh web framework for Axum and SQLx with handler-first APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) mod core;

mod args;
mod error;
mod registry;
mod types;

#[cfg(test)]
mod tests;

pub use error::CommandError;
pub(crate) use registry::CommandRegistry;
pub(crate) use registry::builtin_registry;
pub use registry::{CommandArgInfo, CommandInfo};
pub(crate) use types::{Command, command};
pub use types::{CommandConf, CommandContext};