strip_ansi_cli/
args.rs

1use structopt::*;
2
3#[derive(StructOpt)]
4#[structopt(name = "strip-ansi")]
5pub struct Args {
6    /// Input text.
7    /// Use stdin if not specified.
8    #[structopt(name = "TEXT")]
9    pub text: Option<String>,
10}