removed redundant handlers

This commit is contained in:
michael-bailey 2022-09-12 12:09:56 +01:00
parent 4e5620cf82
commit 950ee1919b
1 changed files with 0 additions and 12 deletions

View File

@ -113,18 +113,6 @@ impl Actor for ConfigManager {
}
}
impl Handler<ObservableMessage<ConfigManagerOutput>> for ConfigManager {
type Result = ();
fn handle(
&mut self,
_msg: ObservableMessage<ConfigManagerOutput>,
_ctx: &mut Self::Context,
) -> Self::Result {
todo!()
}
}
impl Handler<ConfigManagerDataMessage> for ConfigManager {
type Result = Result<ConfigManagerDataResponse, ConfigError>;