mochow_sdk_rust/mochow/
mod.rs1pub mod api;
15
16#[allow(dead_code)]
17pub mod client;
18
19pub mod config;
20
21#[cfg(test)]
22lazy_static::lazy_static! {
23 pub static ref TESTACCOUNT: String = "your_account".to_string();
24 pub static ref TESTPASSWORD: String = "your_password".to_string();
25 pub static ref TESTENDPOINT: String = "http://127.0.0.1:5288".to_string();
26 pub static ref TESTDATABSE: String = "book".to_string();
27 pub static ref TESTTABLE: String = "book_segments".to_string();
28 pub static ref UTCLIENT: crate::mochow::client::MochowClient = crate::mochow::client::MochowClient::new(&TESTACCOUNT, &TESTPASSWORD, &TESTENDPOINT).unwrap();
29}