Server tools to backfill, tail, mirror, and verify PLC logs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

short args why not

phil 36b1017b aa72424b

+2 -2
+2 -2
src/bin/main.rs
··· 5 5 #[derive(Debug, Parser)] 6 6 struct Cli { 7 7 /// Upstream PLC server 8 - #[arg(long, env)] 8 + #[arg(short, long, env)] 9 9 #[clap(default_value = "https://plc.directory")] 10 10 upstream: Url, 11 11 #[command(subcommand)] ··· 17 17 /// Poll an upstream PLC server and log new ops to stdout 18 18 Tail { 19 19 /// Begin replay from a specific timestamp 20 - #[arg(long)] 20 + #[arg(short, long)] 21 21 after: Option<Dt>, 22 22 }, 23 23 }