tsar_sdk/lib.rs
1// TSAR
2// (c) 2024 TSAR, under MIT license
3
4//! Official Rust SDK for TSAR
5
6mod errors;
7mod structs;
8
9#[cfg(test)]
10mod tests;
11
12pub use structs::client::AuthParams;
13pub use structs::client::Client;
14pub use structs::client::ClientParams;
15pub use structs::user::Subscription;
16pub use structs::user::User;