files: add content64 for base64 encoded values

This commit is contained in:
Mikaël Cluseau
2026-01-25 20:01:50 +01:00
parent a6dc420275
commit 6a6536bdfb
4 changed files with 77 additions and 69 deletions

View File

@@ -1,10 +1,10 @@
pub mod apply;
pub mod proxy;
pub mod bootstrap;
pub mod dls;
pub mod dynlay;
pub mod fs;
pub mod logger;
pub mod proxy;
#[derive(Debug, Default, serde::Deserialize, serde::Serialize)]
pub struct Config {
@@ -63,9 +63,10 @@ pub struct File {
}
#[derive(Debug, PartialEq, Eq, serde::Deserialize, serde::Serialize)]
#[serde(rename_all = "snake_case")]
#[serde(rename_all = "lowercase")]
pub enum FileKind {
Content(String),
Content64(String),
Symlink(String),
Dir(bool),
}