This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
2024-12-12 01:07:40 -08:00

23 lines
380 B
Rust

use super::*;
pub struct ControlManager {
channel:Sender<Query>,
}
impl ControlManager {
}
impl Subsystem for ControlManager {
fn start(_supervisor:Option<Sender<Query>>) -> Result<Sender<Query>, Error>
{
Err(Error::new())
}
}
impl From<Sender<Query>> for ControlManager {
fn from(channel:Sender<Query>) -> Self {
Self { channel }
}
}