agent: add Remind request + ReminderTiming enum (stub implementation)

This commit is contained in:
damocles 2026-05-16 12:39:35 +02:00
parent 862bc1de44
commit 7e9fd8e978
2 changed files with 34 additions and 0 deletions

View file

@ -188,5 +188,16 @@ async fn dispatch(req: &AgentRequest, agent: &str, coord: &Arc<Coordinator>) ->
},
}
}
AgentRequest::Remind {
message,
timing,
file_path,
} => {
// TODO: submit to reminder scheduler
// For now, return a stub response
AgentResponse::Err {
message: "remind not yet implemented".to_owned(),
}
}
}
}