summaryrefslogtreecommitdiff
path: root/getuuid.go
diff options
context:
space:
mode:
authorNikolaus Gotsche <n@softwarefools.com>2017-10-02 03:00:34 +0200
committerNikolaus Gotsche <n@softwarefools.com>2017-10-02 03:00:34 +0200
commitb4d150602df5b9a61a3d3b1084524c9317c55cde (patch)
treeff02fad70fb2306cf5486a104b448535294b90b2 /getuuid.go
parent7a38dbeffad2899a6dab74ec9a491e7e7807ba9b (diff)
iengine.go - Here comes all the Mapcration and Action calculus
adde maps and stuff
Diffstat (limited to 'getuuid.go')
-rw-r--r--getuuid.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/getuuid.go b/getuuid.go
deleted file mode 100644
index b9cb7ae..0000000
--- a/getuuid.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package main
-
-import (
- "fmt"
- "log"
- "os/exec"
-)
-
-func main() {
- out,err := exec.Command("uuidgen").Output()
- if err != nil {
- log.Fatal(err)
- }
- fmt.Printf("%s", out)
-}