1 2 3 4 5 6 7 8 9
pub struct IndexDB { pub db: Option<String>, } impl IndexDB { pub fn new() -> Self { Self { db: None } } }