mirror of
https://github.com/livekit/livekit.git
synced 2026-03-31 02:25:39 +00:00
16 lines
228 B
Go
16 lines
228 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/lithammer/shortuuid/v3"
|
|
)
|
|
|
|
const (
|
|
RoomPrefix = "RM_"
|
|
NodePrefix = "ND_"
|
|
ParticipantPrefix = "PA_"
|
|
)
|
|
|
|
func NewGuid(prefix string) string {
|
|
return prefix + shortuuid.New()
|
|
}
|