soph-auth 0.31.0

The RUST Framework for Web Rustceans.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod error;
pub mod support;

pub type AuthResult<T, E = error::Error> = Result<T, E>;

pub struct Auth {
    guard: support::Jwt, // todo dyn auth trait
}

// re-export
pub use soph_core::*;