pronounsfu/scripts/genid/main.go

12 lines
95 B
Go
Raw Normal View History

2022-05-26 07:11:22 -07:00
package main
import (
"fmt"
"github.com/rs/xid"
)
func main() {
fmt.Println(xid.New())
}