mural-client 1.2.1

Client software for the mural wallpaper service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::path::PathBuf;

use clap::{Arg, Command, value_parser};

pub fn get_command() -> Command {
    Command::new(clap::crate_name!())
        .version(clap::crate_version!())
        .author(clap::crate_authors!())
        .about(clap::crate_description!())
        .arg(
            Arg::new("config-dir")
                .long("config-dir")
                .value_parser(value_parser!(PathBuf))
                .help("provide a custom config directory"),
        )
}