You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B

package overpass
type Guild struct {
ID string
prefix string
}
type GuildService interface {
Guild(id string) (*Guild, error)
AddGuild(g *Guild) error
DeleteGuild(g *Guild) error
UpdateGuild(g *Guild) error
GuildChannels(g *Guild) ([]*Channel, error)
}