uuid.go 102 B

1234567
  1. package utils
  2. import "github.com/google/uuid"
  3. func NewUuid() string {
  4. return uuid.New().String()
  5. }