more progress on refactor

This commit is contained in:
Craig
2020-01-23 15:23:26 +00:00
parent 8ba1b68a21
commit 157ee2e1fb
45 changed files with 1344 additions and 789 deletions

View File

@ -45,6 +45,12 @@ type Control struct {
ID string `json:"id"`
}
type ControlTarget struct {
Event string `json:"event"`
ID string `json:"id"`
Target string `json:"target"`
}
type ChatRecieve struct {
Event string `json:"event"`
Content string `json:"content"`
@ -56,15 +62,15 @@ type ChatSend struct {
Content string `json:"content"`
}
type EmojiRecieve struct {
type EmoteRecieve struct {
Event string `json:"event"`
Emoji string `json:"emoji"`
Emote string `json:"emote"`
}
type EmojiSend struct {
type EmoteSend struct {
Event string `json:"event"`
ID string `json:"id"`
Emoji string `json:"emoji"`
Emote string `json:"emote"`
}
type Admin struct {