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

Configure Feed

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

at v0.3.0 14 lines 331 B view raw
1use reqwest::Url; 2 3#[derive(Debug, Clone, clap::Args)] 4pub struct GlobalArgs { 5 /// Upstream PLC server 6 #[arg(short, long, global = true, env = "ALLEGEDLY_UPSTREAM")] 7 #[clap(default_value = "https://plc.directory")] 8 pub upstream: Url, 9} 10 11#[allow(dead_code)] 12fn main() { 13 panic!("this is not actually a module") 14}