use std::path::PathBuf;
use structopt::StructOpt;
#[derive(Debug, StructOpt)]
#[structopt(
name = "tep",
about = "A blazingly fast command-line tool for converting Chinese punctuations to English punctuations."
)]
pub struct Opt {
#[structopt(parse(from_os_str))]
pub input: PathBuf,
#[structopt(parse(from_os_str))]
pub output: Option<PathBuf>,
}