aev-bridge 0.1.1

Aev bridge plugin for phone-friendly terminal access.
Documentation
1
2
3
4
5
6
7
8
use aev_bridge::{serve, Cli};
use anyhow::Result;
use clap::Parser;

#[tokio::main]
async fn main() -> Result<()> {
    serve(Cli::parse().into()).await
}