pavex_cli_client/
config.rs

1//! Configuration for the CLI client.
2
3/// Control whether to use colors in the CLI output.
4#[derive(Clone, Debug)]
5#[non_exhaustive]
6pub enum Color {
7    /// Automatically determine whether to use colors.
8    Auto,
9    /// Always use colors.
10    Always,
11    /// Never use colors.
12    Never,
13}