12 lines
224 B
Rust
12 lines
224 B
Rust
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<State>;
|