mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-13 03:25:32 +00:00
17 lines
313 B
Go
Executable File
17 lines
313 B
Go
Executable File
package example
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/micro/services/clients/go/id"
|
|
"os"
|
|
)
|
|
|
|
// Generate a unique ID. Defaults to uuid.
|
|
func GenerateAuniqueId() {
|
|
idService := id.NewIdService(os.Getenv("MICRO_API_TOKEN"))
|
|
rsp, err := idService.Generate(&id.GenerateRequest{
|
|
Type: "uuid",
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|