mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 17:45:40 +00:00
11 lines
307 B
Go
11 lines
307 B
Go
package routing
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("could not find object")
|
|
ErrHandlerNotDefined = errors.New("handler not defined")
|
|
ErrIncorrectNodeForRoom = errors.New("incorrect node for the current room")
|
|
errInvalidRouterMessage = errors.New("invalid router message")
|
|
)
|