go-zero/core/utils/uuid.go

9 lines
136 B
Go
Raw Normal View History

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