extend message actions and persist process logs with safer exec defaults

This commit is contained in:
DBT
2026-02-24 08:38:08 +00:00
parent 1a6febffe7
commit 6ef8cbc705
5 changed files with 104 additions and 17 deletions

View File

@@ -21,6 +21,9 @@ type OutboundMessage struct {
Content string `json:"content"`
ReplyToID string `json:"reply_to_id,omitempty"`
Buttons [][]Button `json:"buttons,omitempty"`
Action string `json:"action,omitempty"`
MessageID string `json:"message_id,omitempty"`
Emoji string `json:"emoji,omitempty"`
}
type MessageHandler func(InboundMessage) error