mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-22 17:30:26 +00:00
14 lines
276 B
Go
14 lines
276 B
Go
package gumble
|
|
|
|
// Message is data that be encoded and sent to the server. The following
|
|
// types implement this interface:
|
|
// AccessTokens
|
|
// ACL
|
|
// BanList
|
|
// RegisteredUsers
|
|
// TextMessage
|
|
// VoiceTarget
|
|
type Message interface {
|
|
writeMessage(client *Client) error
|
|
}
|