mirror of
https://github.com/livekit/livekit.git
synced 2026-03-31 06:45:43 +00:00
* stubs for room admin APIs * room store APIs to persist participants * participant persistence * updated protobufs * implemented APIs to mute/remove/etc * fixed mute handling
10 lines
238 B
Go
10 lines
238 B
Go
package service
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomNotFound = errors.New("requested room does not exist")
|
|
ErrParticipantNotFound = errors.New("participant does not exist")
|
|
ErrTrackNotFound = errors.New("track is not found")
|
|
)
|