mirror of
https://github.com/livekit/livekit.git
synced 2026-04-26 15:17:35 +00:00
16 lines
225 B
Go
16 lines
225 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/lithammer/shortuuid/v3"
|
|
)
|
|
|
|
const (
|
|
RoomPrefix = "R-"
|
|
NodePrefix = "N-"
|
|
ParticipantPrefix = "P-"
|
|
)
|
|
|
|
func NewGuid(prefix string) string {
|
|
return prefix + shortuuid.New()
|
|
}
|