codeberg_cli/types/
output.rs

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