Early gui impl, basic window management

This commit is contained in:
2024-11-07 15:42:34 +02:00
parent a00486eeaf
commit 4dcd36c3d8
14 changed files with 3905 additions and 24 deletions

View File

@@ -10,6 +10,7 @@ pub mod query;
pub type Result<T> = anyhow::Result<T>;
#[derive(Debug, Clone)]
pub struct Manifest<ST: store::BaseStore> {
store: Box<ST>,
}