Yoda/src/browser/database.rs

12 lines
178 B
Rust
Raw Normal View History

2024-09-22 13:04:27 +03:00
use std::sync::Arc;
pub struct Database {
pub connection: Arc<sqlite::Connection>,
}
impl Database {
fn init(&self) {}
fn save(&self) {}
fn restore(&self) {}
}