mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 19:55:41 +00:00
8 lines
105 B
Go
8 lines
105 B
Go
package service
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomNotFound = errors.New("requested room does not exist")
|
|
)
|