mirror of
https://github.com/livekit/livekit.git
synced 2026-04-29 21:16:03 +00:00
d38fc43b89
* Lock room creation to ensure atomic creation & node assignment * more tests
12 lines
387 B
Go
12 lines
387 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")
|
|
)
|