use crate::ports::Spawner;
use crate::types::*;
pub struct EchoSpawner;
impl EchoSpawner {
pub fn new() -> Self {
Self
}
}
impl Spawner for EchoSpawner {
fn spawn_command(&self, task: &TaskSummary, _brief: &ContextBrief) -> String {
format!("godchat start {}/{}", task.project_id, task.name)
}
}