quadit 0.1.5

A gitops tool to deploy systemd managed containers on linux using quadlets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

/// Configuration for reloading quadit.
/// Used to serialize the contents of `config.yaml`
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct ConfigReload {
    /// The URL of the remote endpoint containing configuration changes.
    pub config_u_r_l: String,
    /// The interval to poll in milliseconds
    pub interval: u64,
}