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.
|
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
|
|
}
|