ll_rs/
lib.rs

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