Skip to main content

db_rs/
utils.rs

1use uuid::Uuid;
2
3pub fn random_test_dir() -> String {
4    format!("/tmp/{}", Uuid::new_v4())
5}