uuid used

This commit is contained in:
2026-02-20 15:06:15 +02:00
parent 35e83ed705
commit 8546ad496f
31 changed files with 265 additions and 238 deletions
+10 -7
View File
@@ -10,6 +10,10 @@
package terms
import (
"mstore/pkg/auxuuid"
)
type PathUsage string
const (
@@ -19,13 +23,12 @@ const (
)
const (
AnonimousUsername = "anonymous"
AnonymousID = "10000000-0000-0000-0000-000000000001"
ServerUsername = "server"
ServerID = "10000000-0000-0000-0000-000000000002"
InitUsername = "mstore"
InitID = "10000000-0000-0000-0000-000000000005"
AnonimousUsername string = "anonymous"
AnonymousID auxuuid.UUID = "10000000-0000-0000-0000-000000000001"
ServerUsername string = "server"
ServerID auxuuid.UUID = "10000000-0000-0000-0000-000000000002"
InitUsername string = "mstore"
InitID auxuuid.UUID = "10000000-0000-0000-0000-000000000005"
)
const (