Skip to main content

flare_core/server/auth/
mod.rs

1//! 服务端认证模块
2//!
3//! 提供 token 验证功能,支持用户自定义验证逻辑
4
5pub mod authenticator;
6pub mod default;
7
8pub use authenticator::{AuthResult, Authenticator};
9pub use default::DefaultAuthenticator;