ayun_auth/
lib.rs

1pub mod config;
2pub mod error;
3pub mod support;
4
5pub type AuthResult<T, E = error::Error> = Result<T, E>;
6
7pub struct Auth {
8    inner: support::JWT, // todo dyn auth trait
9    config: config::Auth,
10}
11
12// re-export
13pub use ayun_core::*;