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
+3 -2
View File
@@ -17,6 +17,7 @@ import (
"time"
"mstore/app/server"
"mstore/pkg/auxuuid"
"mstore/pkg/client"
"mstore/pkg/terms"
@@ -80,7 +81,7 @@ func TestAccountLife(t *testing.T) {
username := "testuser"
password := "testpass"
var accountID string
var accountID auxuuid.UUID
{
// CreateAccount
fmt.Printf("=== CreateAccount ===\n")
@@ -91,7 +92,7 @@ func TestAccountLife(t *testing.T) {
accountID, err = cli.CreateAccount(ctx, srvaddr, username, password)
require.NoError(t, err)
}
var grantID string
var grantID auxuuid.UUID
{
// CreateGrant
fmt.Printf("=== CreateGrant ===\n")