mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 17:45:40 +00:00
10 lines
293 B
Go
10 lines
293 B
Go
package selector
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNoAvailableNodes = errors.New("could not find any available nodes")
|
|
ErrCurrentRegionNotSet = errors.New("current region cannot be blank")
|
|
ErrCurrentRegionUnknownLatLon = errors.New("unknown lat and lon for the current region")
|
|
)
|