breez_sdk_core/persist/
mod.rs1pub(crate) mod cache;
2pub(crate) mod channels;
3pub(crate) mod db;
4pub(crate) mod error;
5pub(crate) mod migrations;
6pub(crate) mod reverseswap;
7pub(crate) mod send_pays;
8pub(crate) mod settings;
9pub(crate) mod swap;
10pub(crate) mod sync;
11pub(crate) mod transactions;
12
13#[cfg(test)]
14mod test_utils {
15 use std::fs;
16
17 use rand::Rng;
18
19 pub fn create_test_sql_dir() -> String {
20 let mut tmp_file = std::env::temp_dir();
21 let mut rng = rand::thread_rng();
22 tmp_file.push(rng.gen::<u32>().to_string());
23 let path = tmp_file.as_path();
24 if path.exists() {
25 std::fs::remove_file(path).unwrap();
26 }
27 fs::create_dir_all(&tmp_file).unwrap();
28 let s = path.to_str().unwrap();
29 String::from(s)
30 }
31}