clyde 0.4.1

A cross-platform package manager for prebuilt applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: 2022 Aurélien Gâteau <mail@agateau.com>
//
// SPDX-License-Identifier: GPL-3.0-or-later

use anyhow::Result;
use clap::Parser;

use clyde::cli::Cli;

fn main() -> Result<()> {
    let cli = Cli::parse();
    cli.exec()
}