stynx-code-auth 3.12.1

Authentication with API keys and macOS Keychain OAuth
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod domain;
pub mod application;
pub mod infrastructure;

pub use application::resolve_credential;
pub use domain::Credential;
pub use infrastructure::oauth::{
    PkceChallenge, generate_pkce,
    generate_state, run_callback_server,
    open_browser,
    OAuthTokens, TokenStore, FileTokenStore,
};