mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
12 lines
178 B
Rust
12 lines
178 B
Rust
|
use std::sync::Arc;
|
||
|
|
||
|
pub struct Database {
|
||
|
pub connection: Arc<sqlite::Connection>,
|
||
|
}
|
||
|
|
||
|
impl Database {
|
||
|
fn init(&self) {}
|
||
|
fn save(&self) {}
|
||
|
fn restore(&self) {}
|
||
|
}
|