forked from mirrors/pronouns.cc
11 lines
95 B
Go
11 lines
95 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rs/xid"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(xid.New())
|
|
}
|