diff --git a/bot.go b/bot.go new file mode 100644 index 0000000..1a665da --- /dev/null +++ b/bot.go @@ -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"` +}