client/
lib.rs

1// src/client/lib.rs
2//! Library entry for the client package
3
4pub mod auth;
5pub mod browser_cookies;
6pub mod models;
7pub mod scheduler;
8pub mod websocket;
9
10// Re-export commonly used functions
11pub use auth::get_cookies_or_browser;