1
2
3
4
5
pub trait Service {
    fn start(&mut self);

    fn stop(&mut self);
}