From 2f676c9d6e7baac289409cbcabde5b6e53b32ec3 Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Wed, 18 Dec 2024 15:50:46 +0900 Subject: fst: rename from fipc Signed-off-by: Ophestra Umiker --- internal/app/id.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 internal/app/id.go (limited to 'internal/app/id.go') 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 -} -- cgit v1.3.1