mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
14 lines
505 B
Go
14 lines
505 B
Go
package routing
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("could not find object")
|
|
ErrHandlerNotDefined = errors.New("handler not defined")
|
|
ErrNoAvailableNodes = errors.New("could not find any available nodes")
|
|
ErrIncorrectRTCNode = errors.New("current node isn't the RTC node for the room")
|
|
errInvalidRouterMessage = errors.New("invalid router message")
|
|
ErrChannelClosed = errors.New("channel closed")
|
|
ErrChannelFull = errors.New("channel is full")
|
|
)
|