mirror of https://github.com/hak5/scuzzy.git
32 lines
725 B
Go
32 lines
725 B
Go
package models
|
|
|
|
import "github.com/bwmarrin/discord.go"
|
|
|
|
type ColorRole struct {
|
|
Name string `json:"color"`
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
type CommandRestriction struct {
|
|
Command string `json:"command"`
|
|
Mode string `json:"mode"`
|
|
Channels []string `json:"channels"`
|
|
}
|
|
|
|
type Configuration struct {
|
|
GuildID string `json:"guild_id"`
|
|
|
|
StatusText string `json:"status_text"`
|
|
WelcomeText string `json:"welcome_text"`
|
|
CommandKey string `json:"command_key"`
|
|
|
|
AdminRoles []string `json:"admin_roles"`
|
|
JoinRoleIDs []string `json:"join_role_ids"`
|
|
|
|
CommandRestrictions []CommandRestriction `json:"command_restrictions"`
|
|
|
|
ColorRoles []ColorRole `json:"color_roles"`
|
|
|
|
Guild *discordgo.Guild `json:"reserved_guild"`
|
|
}
|