agent: add Remind request + ReminderTiming enum (stub implementation)
This commit is contained in:
parent
862bc1de44
commit
7e9fd8e978
2 changed files with 34 additions and 0 deletions
|
|
@ -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(),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue