A digital life memoir of your life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
467 B

//! Options for running the Store server.
use std::path::PathBuf;
use clap::Parser;
#[derive(Parser)]
#[command(author, version, long_about, color = clap::ColorChoice::Always)]
/// Store is the central part of the Memoirs. It keeps all the data from
/// the several Capturers and offers searches for the Viewers.
pub struct Options {
/// Working directory
#[arg(short, long, env = "STORE_PATH", default_value = "./")]
pub working_directory: PathBuf,
}