mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 22:05:39 +00:00
* egress updates * pass egressInfo to delete * update typefakes * export StartEgress * update protocol * new rpc, rename stores * add json tag * update tests * update protocol
15 lines
603 B
Go
15 lines
603 B
Go
package service
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrEgressNotFound = errors.New("egress does not exist")
|
|
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")
|
|
ErrOperationFailed = errors.New("operation cannot be completed")
|
|
)
|