engine/utils/identity.go

11 lines
150 B
Go
Raw Normal View History

2024-02-11 01:31:01 +08:00
package utils
import (
2024-06-14 17:23:24 +08:00
ulid "github.com/oklog/ulid/v2"
2024-02-11 01:31:01 +08:00
)
2024-09-20 14:46:46 +08:00
// remove nanoid,uuid,replace to ulid
2024-06-14 17:23:24 +08:00
func ULID() string {
return ulid.Make().String()
}