mirror of
https://github.com/livekit/livekit.git
synced 2026-04-04 14:45:43 +00:00
12 lines
383 B
Go
12 lines
383 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")
|
|
ErrIncorrectNodeForRoom = errors.New("incorrect node for the current room")
|
|
errInvalidRouterMessage = errors.New("invalid router message")
|
|
)
|