16 lines
275 B
Go
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
|
|
}
|