horus-cli 0.2.2

The terminal client for a Horus gateway
1
2
3
4
5
6
use horus_gateway::Result;

#[tokio::main]
async fn main() -> Result<()> {
    horus_gateway::command::run(std::env::args_os().skip(1).collect()).await
}