tangled
alpha
login
or
join now
ptr.pet
/
Allegedly
forked from
microcosm.blue/Allegedly
0
fork
atom
Server tools to backfill, tail, mirror, and verify PLC logs
0
fork
atom
overview
issues
pulls
pipelines
oops fmt
bad-example.com
5 months ago
aa72424b
d68ab94e
+2
-2
1 changed file
expand all
collapse all
unified
split
src
bin
main.rs
+2
-2
src/bin/main.rs
···
1
1
+
use allegedly::{Dt, bin_init, poll_upstream};
1
2
use clap::{Parser, Subcommand};
2
3
use url::Url;
3
3
-
use allegedly::{Dt, bin_init, poll_upstream};
4
4
5
5
#[derive(Debug, Parser)]
6
6
struct Cli {
···
19
19
/// Begin replay from a specific timestamp
20
20
#[arg(long)]
21
21
after: Option<Dt>,
22
22
-
}
22
22
+
},
23
23
}
24
24
25
25
#[tokio::main]