go-zero/core/utils/uuid.go
2020-07-26 17:09:05 +08:00

8 lines
102 B
Go

package utils
import "github.com/google/uuid"
func NewUuid() string {
return uuid.New().String()
}