diff --git a/structs.go b/structs.go index d400b4a..1d2fd85 100644 --- a/structs.go +++ b/structs.go @@ -37,13 +37,10 @@ type Message struct { Timestamp string `json:"timestamp"` MentionEveryone bool `json:"mention_everyone"` EditedTimestamp string `json:"edited_timestamp"` - Mentions []Mention `json:"mentions"` + Mentions []User `json:"mentions"` ChannelId int `json:"channel_id,string"` } -type Mention struct { -} - type Attachment struct { }