wiki-o 0.1.0

Smart note taking cli app
Documentation
1
2
3
4
5
6
7
use anyhow::Result;
use wiki_o::run;

fn main() -> Result<()> {
    run()?;
    Ok(())
}