format code
All checks were successful
Run Check Script / check (pull_request) Successful in -8s

This commit is contained in:
Ian Letourneau 2025-07-01 11:49:52 -04:00
parent c02763a6fc
commit 2c90d50168
5 changed files with 9 additions and 5 deletions

View File

@ -17,7 +17,10 @@ impl std::fmt::Debug for K8sClient {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
// This is a poor man's debug implementation for now as kube::Client does not provide much // This is a poor man's debug implementation for now as kube::Client does not provide much
// useful information // useful information
f.write_fmt(format_args!("K8sClient {{ kube client using default namespace {} }}", self.client.default_namespace())) f.write_fmt(format_args!(
"K8sClient {{ kube client using default namespace {} }}",
self.client.default_namespace()
))
} }
} }

View File

@ -61,7 +61,8 @@ impl K8sclient for K8sAnywhereTopology {
impl Serialize for K8sAnywhereTopology { impl Serialize for K8sAnywhereTopology {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where where
S: serde::Serializer { S: serde::Serializer,
{
todo!() todo!()
} }
} }

View File

@ -13,7 +13,7 @@ use crate::{modules::application::ApplicationFeature, topology::Topology};
/// It is intended to be used as an application feature passed down to an ApplicationInterpret. For /// It is intended to be used as an application feature passed down to an ApplicationInterpret. For
/// example : /// example :
/// ///
/// ```rust /// ```rust,ignore
/// let app = RustApplicationScore { /// let app = RustApplicationScore {
/// name: "My Rust App".to_string(), /// name: "My Rust App".to_string(),
/// features: vec![ContinuousDelivery::default()], /// features: vec![ContinuousDelivery::default()],

View File

@ -1,3 +1,4 @@
pub mod application;
pub mod cert_manager; pub mod cert_manager;
pub mod dhcp; pub mod dhcp;
pub mod dns; pub mod dns;
@ -14,4 +15,3 @@ pub mod okd;
pub mod opnsense; pub mod opnsense;
pub mod tenant; pub mod tenant;
pub mod tftp; pub mod tftp;
pub mod application;