mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 19:55:41 +00:00
15 lines
572 B
Go
15 lines
572 B
Go
package routing
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("could not find object")
|
|
ErrIPNotSet = errors.New("ip address is required and not set")
|
|
ErrHandlerNotDefined = errors.New("handler not defined")
|
|
ErrIncorrectRTCNode = errors.New("current node isn't the RTC node for the room")
|
|
ErrNodeNotFound = errors.New("could not locate the node")
|
|
ErrInvalidRouterMessage = errors.New("invalid router message")
|
|
ErrChannelClosed = errors.New("channel closed")
|
|
ErrChannelFull = errors.New("channel is full")
|
|
)
|