27 lines
494 B
Go
27 lines
494 B
Go
package storage
|
|
|
|
type SimpleDiscordUser struct {
|
|
Username string `json:"username"`
|
|
Discriminator string `json:"discriminator"`
|
|
Avatar string `json:"avatar"`
|
|
Banner string `json:"banner"`
|
|
Accent_color int `json:"accent_color"`
|
|
Verified bool `json:"verified"`
|
|
}
|
|
|
|
type BotData struct {
|
|
Token string
|
|
ID string
|
|
Loaded SimpleDiscordUser
|
|
}
|
|
|
|
// one array of just bot ids
|
|
// `bot:(id):token`
|
|
// `bot:(id):data`
|
|
// SimpleDiscordUser
|
|
|
|
func GetBots() {
|
|
|
|
|
|
|
|
} |