mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-22 21:23:01 -05:00
9 lines
290 B
Go
9 lines
290 B
Go
package structs
|
|
|
|
type TwitchMessageMetadata struct {
|
|
Username string `json:"username"`
|
|
MessageType string `json:"type"`
|
|
Channel string `json:"channel"`
|
|
Message string `json:"message"`
|
|
Tags map[string]string `json:"tags"`
|
|
}
|