llldap/src/cli.rs

9 lines
223 B
Rust

use argh::FromArgs;
/// Run the llldap server
#[derive(FromArgs)]
pub struct CliArgs {
/// address or socket to listen on
#[argh(positional, default = "String::from(\"127.0.0.1:3389\")")]
pub listen: String,
}