pronounsfu/scripts/genid/main.go

12 lines
95 B
Go

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