uuid/main.go

12 lignes
102 B
Go

package main
import (
"fmt"
"github.com/pborman/uuid"
)
func main() {
fmt.Println(uuid.New())
}