use anyhow::Result;
pub struct Executor {
#[allow(dead_code)]
config: crate::core::config::RuntimeConfig,
}
impl Executor {
pub fn new(config: crate::core::config::RuntimeConfig) -> Self {
Self { config }
}
pub async fn execute(&self, _task: &str) -> Result<()> {
Ok(())
}
}