bzr 0.1.0

A CLI for Bugzilla, inspired by gh
Documentation
1
2
3
4
5
6
7
8
use clap::Subcommand;

/// Whoami action — shows the authenticated user's identity.
#[derive(Subcommand)]
pub enum WhoamiAction {
    /// Show the currently authenticated user
    Show,
}