gcli 2.0.0-pre.1

Gear program CLI
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

use clap::Parser;
use gcli::Cli;

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