mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 15:40:27 +00:00
89e2dbac15
Also update to latest melody upstream
11 lines
303 B
Go
11 lines
303 B
Go
package melody
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrClosed = errors.New("melody instance is closed")
|
|
ErrSessionClosed = errors.New("session is closed")
|
|
ErrWriteClosed = errors.New("tried to write to closed a session")
|
|
ErrMessageBufferFull = errors.New("session message buffer is full")
|
|
)
|