socorro_cli/output/mod.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5pub mod compact;
6pub mod json;
7pub mod markdown;
8
9use clap::ValueEnum;
10
11#[derive(Debug, Clone, Copy, PartialEq, ValueEnum)]
12pub enum OutputFormat {
13 Compact,
14 Json,
15 Markdown,
16}