chore: cargo fmt
Some checks failed
Run Check Script / check (pull_request) Failing after 37s

This commit is contained in:
2025-08-23 15:48:21 -04:00
parent c805d7e018
commit 6c92dd24f7
10 changed files with 29 additions and 22 deletions

View File

@@ -48,7 +48,7 @@ pub struct CaddyGeneral {
#[yaserde(rename = "TlsDnsPropagationResolvers")]
pub tls_dns_propagation_resolvers: MaybeString,
#[yaserde(rename = "TlsDnsEchDomain")]
pub tls_dns_ech_domain: MaybeString,
pub tls_dns_ech_domain: Option<MaybeString>,
pub accesslist: MaybeString,
#[yaserde(rename = "DisableSuperuser")]
pub disable_superuser: Option<i32>,

View File

@@ -1,9 +1,9 @@
mod caddy;
mod dhcpd;
pub mod dnsmasq;
mod haproxy;
mod interfaces;
mod opnsense;
pub mod dnsmasq;
pub use caddy::*;
pub use dhcpd::*;
pub use haproxy::*;