readme: update google/uuid module (#7310)

update uuid.New().String() to uuid.NewString()
This commit is contained in:
Mikel Olasagasti Uranga
2024-11-22 04:37:04 +01:00
committed by GitHub
parent 84b3e07f1b
commit 597072ef1b
3 changed files with 4 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ func initStore() {
slog.Debug(fmt.Sprintf("unexpected error searching for store: %s", err))
}
slog.Debug("initializing new store")
store.ID = uuid.New().String()
store.ID = uuid.NewString()
writeStore(getStorePath())
}