mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
11 lines
95 B
Go
11 lines
95 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rs/xid"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(xid.New())
|
|
}
|