bzr 0.1.0

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

#[derive(Subcommand)]
pub enum ClassificationAction {
    /// View a classification by name or ID
    View {
        /// Classification name or ID
        name: String,
    },
}