aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/id.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/id.go')
-rw-r--r--internal/app/id.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/internal/app/id.go b/internal/app/id.go
deleted file mode 100644
index 6ca48312..00000000
--- a/internal/app/id.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package app
-
-import (
- "crypto/rand"
- "encoding/hex"
-)
-
-type ID [16]byte
-
-func (a *ID) String() string {
- return hex.EncodeToString(a[:])
-}
-
-func newAppID(id *ID) error {
- _, err := rand.Read(id[:])
- return err
-}