gallo 0.6.0

Batch mode application to control a Pico de Gallo device
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use color_eyre::Result;
use gallo::Cli;

#[tokio::main]
async fn main() -> Result<()> {
    color_eyre::install()?;
    Cli::parse().run().await
}