ai_usagebar/cursor/mod.rs
1//! Cursor — premium-request quota read from the local Cursor IDE session
2//! token (`state.vscdb`) against the undocumented `cursor.com/api/usage`
3//! endpoint the Cursor dashboard itself calls. See `db.rs` for the token
4//! source and `fetch.rs`/`types.rs` for the wire call and schema.
5
6pub mod db;
7pub mod fetch;
8pub mod types;
9pub mod vendor;
10
11pub use fetch::{FetchOutcome, fetch_snapshot};