jokoway 0.1.0-rc.1

Jokoway is a high-performance API Gateway built on Pingora (Rust) with dead-simple YAML configs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod config {
    #[cfg(feature = "acme")]
    pub use jokoway_acme::{AcmeChallengeType, AcmeSettings};
    pub use jokoway_core::config::*;
}
pub use jokoway_core::error;
pub mod extensions;

pub mod cli;

pub mod server;

pub mod prelude;