pub mod redb; pub mod sqlite; pub mod toml; pub trait Store { fn image(&self, id: &str) -> Option>; fn save_image(&mut self, id: &str, data: &[u8]); } pub struct Settings {}