use std::error::Error; use std::path::PathBuf; use crate::service::ServiceManager; pub struct OSXServiceManager {} impl ServiceManager for OSXServiceManager { fn install(&self, _bin_path: PathBuf, _name: &str, _server_url: &str) -> Result<(), Box> { todo!() } fn uninstall(&self, _name: &str) -> Result<(), Box> { todo!() } fn start(&self, _name: &str) -> Result<(), Box> { todo!() } fn stop(&self, _name: &str) -> Result<(), Box> { todo!() } }