From 1086d57a4d3fed136c277d92d101acd4f104f6fc Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Thu, 11 Jun 2026 15:55:40 +0000 Subject: [PATCH] auth: gofmt User struct alignment Co-Authored-By: Claude Opus 4.8 --- internal/auth/auth.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/auth/auth.go b/internal/auth/auth.go index 3751ba1..76b292b 100644 --- a/internal/auth/auth.go +++ b/internal/auth/auth.go @@ -19,10 +19,10 @@ const ( // User is the resolved identity for one session. type User struct { - Name string - Kind Kind - PubKeyFP string // SHA256 fingerprint, empty for guests without a key - StoreID int64 // 0 for guests + Name string + Kind Kind + PubKeyFP string // SHA256 fingerprint, empty for guests without a key + StoreID int64 // 0 for guests } // GuestNames are usernames that always map to an anonymous guest hub session.