server: add support for dataset by timestamp

This commit is contained in:
nym21
2024-12-27 12:28:27 +01:00
parent 2b017ac6b5
commit 481f5c0a97
19 changed files with 286 additions and 121 deletions

View File

@@ -5,10 +5,6 @@ pub fn retry<T>(
sleep_in_s: u64,
retries: usize,
) -> color_eyre::Result<T> {
if retries < 1 {
unreachable!()
}
let mut i = 0;
loop {