mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-01-03 11:20:08 -05:00
10 lines
290 B
Go
10 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"`
|
||
|
}
|