cod-cli 0.2.0

Defines the CLI of codeberg-cli
Documentation
1
2
3
4
5
6
7
8
9
pub mod info;

use clap::Subcommand;

/// User subcommands
#[derive(Subcommand, Debug)]
pub enum UserArgs {
    Info(info::UserInfoArgs),
}