Skip to main content

gor/auth/
mod.rs

1//! Authentication module for `gor`.
2//!
3//! Handles login, logout, status, and token management.
4//! Uses the OAuth device flow for authentication.
5
6pub mod device;
7pub mod token;