Skip to main content

tuitbot_core/auth/
mod.rs

1//! Authentication module for Tuitbot.
2//!
3//! Provides passphrase-based authentication and session management for
4//! web/LAN access. Bearer tokens remain the primary auth method for
5//! Tauri desktop and API clients.
6
7pub mod error;
8pub mod passphrase;
9pub mod session;