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