1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use std::error::Error; mod entry; mod list; pub struct Lib {} impl Lib { pub fn new() -> Result<Self, Box<dyn Error>> { todo!(); } pub fn run(&mut self) -> Result<(), Box<dyn Error>> { todo!(); } }