pub trait ConfigInterface: Send + Sync {
// Required methods
fn service_bind(&self) -> SocketAddr;
fn swagger_ui_enabled(&self) -> bool;
}pub trait ConfigInterface: Send + Sync {
// Required methods
fn service_bind(&self) -> SocketAddr;
fn swagger_ui_enabled(&self) -> bool;
}