summaryrefslogtreecommitdiff
path: root/src/glaze.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/glaze.go')
-rw-r--r--src/glaze.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glaze.go b/src/glaze.go
index 6cbf242..e06470b 100644
--- a/src/glaze.go
+++ b/src/glaze.go
@@ -17,7 +17,7 @@ import (
"syscall"
"time"
- "guuid"
+ "uuid"
g "gobang"
)
@@ -240,7 +240,7 @@ func logged(
) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
- id := guuid.New().String()
+ id := uuid.New().String()
args := []any{
"id", id,
"pattern", []string{ pattern, path },
@@ -336,7 +336,7 @@ func listen(fromAddr string) net.Listener {
"from-address", fromAddr,
slog.Group(
"versions",
- "guuid", guuid.Version,
+ "uuid", uuid.Version,
"gobang", g.Version,
"glaze", Version,
),