shellchat 1.0.39

Transforms natural language into shell commands for execution or explanation.
1
2
3
4
5
6
7
use clap::Parser;
use shc_lib::client::{client, ClientCli};

#[tokio::main]
async fn main() {
    client(ClientCli::parse()).await
}