mirror of
https://github.com/livekit/livekit.git
synced 2026-04-03 17:05:42 +00:00
18 lines
282 B
Go
18 lines
282 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/lithammer/shortuuid/v3"
|
|
)
|
|
|
|
const (
|
|
RoomPrefix = "RM_"
|
|
NodePrefix = "ND_"
|
|
ParticipantPrefix = "PA_"
|
|
TrackPrefix = "TR_"
|
|
APIKeyPrefix = "API"
|
|
)
|
|
|
|
func NewGuid(prefix string) string {
|
|
return prefix + shortuuid.New()
|
|
}
|