soph_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    guard: support::Jwt, // todo dyn auth trait
9}
10
11// re-export
12pub use soph_core::*;