1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
use structopt::StructOpt;

use std::path::PathBuf;

#[derive(Debug, StructOpt)]
#[structopt(
    name = "Hugo to JSON",
    about = "A tool to turn Hugo sites into a JSON representation."
)]
pub struct Settings {
    /// The path to [Hugo](https://gohugo.io/)'s [contents](https://gohugo.io/content-management/organization/) directory. Defaults to `./content/`
    #[structopt(parse(from_os_str))]
    pub scan_path: PathBuf,
    /// The path that index will be output to. If not provided, writes to stdout
    #[structopt(short = "o", parse(from_os_str))]
    pub output: Option<PathBuf>,
}