use std::sync::Arc;
pub struct Browser {
connection: Arc<sqlite::Connection>,
}
impl Browser {
pub fn new(connection: Arc<sqlite::Connection>) -> Browser {
let this = Self { connection };
this.init();
this
}
fn init(&self) {}
fn save(&self) {}
fn restore(&self) {}
}