diff --git a/models/chatActionEvent.go b/models/chatActionEvent.go deleted file mode 100644 index c90b16a8f..000000000 --- a/models/chatActionEvent.go +++ /dev/null @@ -1,12 +0,0 @@ -package models - -import "time" - -// ChatActionEvent represents a generic action that took place by a chat user. -type ChatActionEvent struct { - Username string `json:"username"` - Type EventType `json:"type"` - ID string `json:"id"` - Timestamp time.Time `json:"timestamp,omitempty"` - Message string `json:"message,omitempty"` -}