go-zero/core/utils/uuid.go

8 lines
102 B
Go
Raw Normal View History

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