tagwiki/src/cli.rs

12 lines
299 B
Rust
Raw Normal View History

2020-03-08 23:36:52 +00:00
//! Command line options handling
use std::path::PathBuf;
use structopt::StructOpt;
#[derive(Debug, StructOpt, Clone)]
#[structopt(about = "Rust application template")] // CHANGEME
#[structopt(global_setting = structopt::clap::AppSettings::ColoredHelp)]
pub struct Opts {
pub path: PathBuf,
}