forked from
microcosm.blue/Allegedly
Server tools to backfill, tail, mirror, and verify PLC logs
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}