ai-usagebar 1.19.0

Omarchy/Waybar widgets + TUI for tracking multi-provider AI plan usage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! User-defined HTTP providers: a URL, a static token, and JSON pointers.
//!
//! Configured as `[[custom]]` tables (see `config::CustomProviderConfig`).
//! Everything vendor-specific that a built-in provider hard-codes — endpoint,
//! auth header, response schema — is data here, which is why the module has
//! a `mapping` where the others have a `types` mirroring an upstream API.

pub mod fetch;
pub mod mapping;
pub mod types;
pub mod vendor;

pub use fetch::fetch_snapshot;