gedaechtnas/gdn/src/repo/v0.rs
2025-05-03 16:24:54 +02:00

15 lines
218 B
Rust

use super::v1;
pub const VERSION: u32 = 0;
pub struct Repo;
impl Repo {
pub fn load() -> Self {
Self
}
pub fn migrate(self) -> super::Repo {
v1::Repo { notes: vec![] }.migrate()
}
}