codeberg-cli 0.5.5

CLI Tool for codeberg similar to gh and glab
Documentation
1
2
3
4
5
6
7
8
9
/// Output mode for commands
#[derive(Debug, Clone, Copy, Default, clap::ValueEnum)]
pub enum OutputMode {
    /// Pretty output with tables rendered in the terminal
    #[default]
    Pretty,
    /// Raw json output for further use with pipes etc
    Json,
}