slash roleypoly yay

This commit is contained in:
41666 2025-03-26 16:36:00 -07:00
parent 02f5075d3b
commit 607d7e121c
22 changed files with 394 additions and 66 deletions

7
types/discord.go Normal file
View file

@ -0,0 +1,7 @@
package types
type Emoji struct {
Name string `json:"name,omitempty"`
ID string `json:"id,omitempty"`
Animated bool `json:"animated,omitempty"`
}

View file

@ -1,7 +1,8 @@
package types
type DiscordUser struct {
ID string `json:"id"`
Username string `json:"username"`
Avatar string `json:"avatar"`
ID string `json:"id"`
Username string `json:"username"`
Avatar string `json:"avatar"`
GlobalName string `json:"globalName"`
}