Skip to main content

jira_core/
auth.rs

1/// Auth helper — token storage is handled via config file (chmod 600 on Unix).
2/// This module is kept for future credential helper / keyring opt-in support.
3pub struct Auth;
4
5impl Auth {
6    /// Placeholder — token is stored directly in JiraConfig.
7    /// Kept for API compatibility and future keyring opt-in.
8    pub fn migrate_keyring_token(_email: &str) -> Option<String> {
9        None
10    }
11}