craban/model/utils.go

10 lines
105 B
Go
Raw Normal View History

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