diff options
author | EuAndreh <eu@euandre.org> | 2024-09-12 16:13:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-09-13 05:19:32 -0300 |
commit | 1e62da79d8c61cee0a13df4e16a349ca9bae383c (patch) | |
tree | 43d975c5c2407c2513c317eed4ed26343a24f517 /tests/libbuild.go | |
parent | Initial empty commit (diff) | |
download | uuid-1e62da79d8c61cee0a13df4e16a349ca9bae383c.tar.gz uuid-1e62da79d8c61cee0a13df4e16a349ca9bae383c.tar.xz |
Initial version of v4 UUID
Diffstat (limited to 'tests/libbuild.go')
-rw-r--r-- | tests/libbuild.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/libbuild.go b/tests/libbuild.go new file mode 100644 index 0000000..2c02686 --- /dev/null +++ b/tests/libbuild.go @@ -0,0 +1,11 @@ +package main + +import ( + "fmt" + + "guuid" +) + +func main() { + fmt.Println(guuid.New()) +} |