package notification type TaskNotification struct { TaskID string Title string Status string Message string } type TaskEventType string const ( TaskEventRunning TaskEventType = "task.running" TaskEventCompleted TaskEventType = "task.completed" TaskEventFailed TaskEventType = "task.failed" TaskEventCanceled TaskEventType = "task.canceled" ) type TaskEvent struct { Type TaskEventType TaskID string Title string Status string Message string }