use jsondb::JsonDb; mod v0 { pub type State = crate::store::StoredFiles; impl jsondb::SchemaV0 for State { const VERSION_OPTIONAL: bool = true; } } pub use v0::State; pub type StateDb = JsonDb;