elisym-client 0.4.8

CLI agent runner for the elisym protocol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cli;
mod constants;
pub mod ledger;
pub mod runtime;
pub mod skill;
pub mod transport;
pub mod tui;
pub mod util;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    cli::run().await?;
    Ok(())
}