go-zero/core/utils/uuid.go

9 lines
137 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package utils
import "github.com/google/uuid"
2022-11-04 21:55:17 +08:00
// NewUuid returns an uuid string.
2020-07-26 17:09:05 +08:00
func NewUuid() string {
return uuid.New().String()
}