dkl apply-config --dry-run

This commit is contained in:
Mikaël Cluseau
2026-02-21 18:15:39 +01:00
parent ddc82199fb
commit d449fc8dcf
5 changed files with 56 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
use async_compression::tokio::write::{ZstdDecoder, ZstdEncoder};
use chrono::{DurationRound, TimeDelta, Utc};
use eyre::{format_err, Result};
use eyre::{Result, format_err};
use log::{debug, error, warn};
use std::path::{Path, PathBuf};
use std::process::Stdio;
@@ -9,7 +9,7 @@ use tokio::{
io::{self, AsyncBufReadExt, AsyncRead, AsyncWrite, AsyncWriteExt, BufReader, BufWriter},
process,
sync::mpsc,
time::{sleep, Duration},
time::{Duration, sleep},
};
pub type Timestamp = chrono::DateTime<Utc>;