Skip to main content

objectiveai_api/auth/
mod.rs

1//! Authentication and API key management.
2//!
3//! This module provides traits and implementations for managing API keys,
4//! BYOK (Bring Your Own Key) OpenRouter keys, and credit balances.
5
6mod client;
7mod objectiveai;
8
9pub use client::*;
10pub use objectiveai::*;