added bot struct.

This commit is contained in:
5elenay 2021-09-08 16:34:08 +03:00
parent 09b894aa98
commit 24b09a68ba

10
bot.go Normal file

@ -0,0 +1,10 @@
package revoltgo
// Bot struct.
type Bot struct {
Id string `json:"_id"`
OwnerId string `json:"owner"`
Token string `json:"token"`
IsPublic bool `json:"public"`
InteractionsUrl string `json:"interactionsURL"`
}