togglr_sdk/
lib.rs

1pub mod client;
2pub mod config;
3pub mod context;
4pub mod errors;
5pub mod track_event;
6pub mod types;
7
8// Generated OpenAPI client
9pub mod generated {
10    pub mod apis;
11    pub mod models;
12}
13
14pub use client::TogglrClient;
15pub use config::{Config, ConfigBuilder, BackoffConfig};
16pub use context::RequestContext;
17pub use errors::{TogglrError, TogglrResult};
18pub use track_event::{TrackEvent, TrackEventBuilder, EventType, create_track_event};
19pub use types::*;