mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 22:05:39 +00:00
* small refactor * extra line * fix room allocator test * selector fakes not used * keep decisions out of router * put nodeId logic back * fix room allocator test
13 lines
469 B
Go
13 lines
469 B
Go
package service
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomNotFound = errors.New("requested room does not exist")
|
|
ErrRoomLockFailed = errors.New("could not lock room")
|
|
ErrRoomUnlockFailed = errors.New("could not unlock room, lock token does not match")
|
|
ErrParticipantNotFound = errors.New("participant does not exist")
|
|
ErrTrackNotFound = errors.New("track is not found")
|
|
ErrWebHookMissingAPIKey = errors.New("api_key is required to use webhooks")
|
|
)
|