tsar-sdk 0.1.0-beta.3

Official Rust SDK for TSAR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TSAR
// (c) 2024 TSAR, under MIT license

//! Official Rust SDK for TSAR

mod errors;
mod structs;

#[cfg(test)]
mod tests;

pub use structs::client::AuthParams;
pub use structs::client::Client;
pub use structs::client::ClientParams;
pub use structs::user::Subscription;
pub use structs::user::User;