llldap/src/cli.rs

9 lines
223 B
Rust
Raw Normal View History

2026-09-01 15:27:28 +02:00
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,
}