8 lines
107 B
Go
8 lines
107 B
Go
package helpers
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
func GenerateID() string {
|
|
return uuid.New().String()
|
|
}
|