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

@@ -83,6 +83,6 @@ impl Config {
}
pub fn base64_decode(s: &str) -> Result<Vec<u8>, base64::DecodeError> {
use base64::{prelude::BASE64_STANDARD_NO_PAD as B64, Engine};
use base64::{Engine, prelude::BASE64_STANDARD_NO_PAD as B64};
B64.decode(s.trim_end_matches('='))
}