Package based on Unkey's Article around key generation
go get -u github.com/stneto1/gokey
package main
import (
"log"
"github.com/stneto1/gokey"
)
func main() {
key := gokey.MustGenerateKey("sk", 10)
log.Println("Generated key", key) // Generated key sk_550e8400e2
}