tsar_client/
lib.rs

1// TSAR
2// (c) 2024 TSAR, under MIT license
3
4//! Depricated. Please use `tsar-sdk` crate instead.
5
6pub struct Client {}
7
8impl Client {
9    pub fn init() -> Self {
10        print!("WARNING! THIS CRATE IS DEPRICATED. PLEASE USE THE 'tsar-sdk' CRATE INSTEAD.");
11
12        Self {}
13    }
14}