overpass/channel.go
2020-09-29 19:36:45 -08:00

16 lines
275 B
Go

package overpass
type Channel struct {
ID string
embed bool
retweets bool
guild *Guild
}
type ChannelService interface {
Channel(id string) (*Channel, error)
AddChannel(c *Channel) error
UpdateChannel(c *Channel) error
DeleteChannel(c *Channel) error
}