arbor-cli 0.1.0

A trie-based auto-completion tool.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::error::Error;

use arbor_cli::util::repl::Repl;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    Repl::new().await?.run().await?;

    Ok(())
}