use super::adapter::ProtocolConfig;
#[derive(Debug, Clone)]
pub struct EmptyConfig;
impl ProtocolConfig for EmptyConfig {
fn validate(&self) -> Result<(), super::adapter::ConfigError> {
Ok(())
}
fn default_config() -> Self {
Self
}
fn merge(self, _other: Self) -> Self {
self
}
}