10 lines
105 B
Go
10 lines
105 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"github.com/google/uuid"
|
||
|
)
|
||
|
|
||
|
func NewID() string {
|
||
|
return uuid.New().String()
|
||
|
}
|