ymir 0.3.0

Core library for building scalable application using rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod adapter;
pub mod config;
pub mod context;
pub mod errors;
pub mod health;
pub mod hook;
pub mod interception;
pub(crate) mod logo;
pub mod prelude;
pub mod render;
pub mod responses;
pub mod signal;
pub mod startup;
pub mod state;
pub mod types;

pub type Result<T, E = errors::Error> = std::result::Result<T, E>;