mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
7 lines
158 B
Rust
7 lines
158 B
Rust
use revdb::db::RevDB;
|
|
use tempfile::TempDir;
|
|
|
|
pub fn make_test_db() -> RevDB {
|
|
let tempdir = TempDir::new().unwrap();
|
|
RevDB::open(tempdir).unwrap()
|
|
}
|