working commit

This commit is contained in:
2026-02-20 19:08:26 +02:00
parent f973293315
commit 3220e2d78f
32 changed files with 195 additions and 213 deletions
+4 -4
View File
@@ -11,7 +11,7 @@
package term
import (
"mstore/pkg/uuid"
//"mstore/pkg/auxid"
)
type PathUsage string
@@ -24,11 +24,11 @@ const (
const (
AnonimousUsername string = "anonymous"
AnonymousID uuid.UUID = "10000000-0000-0000-0000-000000000001"
AnonymousID uint64 = 1
ServerUsername string = "server"
ServerID uuid.UUID = "10000000-0000-0000-0000-000000000002"
ServerID uint64 = 2
InitUsername string = "mstore"
InitID uuid.UUID = "10000000-0000-0000-0000-000000000005"
InitID uint64 = 5
)
type Right string