Initial commit

This commit is contained in:
Ian Gulliver
2023-06-11 09:51:30 -07:00
parent 3a2f3e7858
commit 4b6bfe73cd
5 changed files with 37 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/dchest/uniuri"
)
func main() {
fmt.Printf("%s\n", uniuri.New())
}