summaryrefslogtreecommitdiff
path: root/src/main.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-04 09:12:26 -0300
committerEuAndreh <eu@euandre.org>2025-05-04 09:12:26 -0300
commitf5187787c58670e80884078bd8eca5335e5b37e7 (patch)
treecdc6afc123e95c4537fadd436879b5929801bd85 /src/main.go
parentre s/guuid/uuid/g (diff)
downloaduuid-f5187787c58670e80884078bd8eca5335e5b37e7.tar.gz
uuid-f5187787c58670e80884078bd8eca5335e5b37e7.tar.xz
Add standalone uuid(1) utility
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go
new file mode 100644
index 0000000..d3c7f21
--- /dev/null
+++ b/src/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "uuid"
+
+func main() {
+ uuid.Main()
+}