memos_cli_ui/
lib.rs

1pub mod list;
2
3pub struct UI {}
4
5impl UI {
6    pub fn new() -> Self {
7        Self {}
8    }
9}