From 7b2ae7377ac7f385bc794e0384c48379fe88c064 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Sun, 25 Jan 2026 21:53:20 +0800 Subject: [PATCH] chore(auth): add `net/url` import to `auth_files.go` for URL handling --- internal/api/handlers/management/auth_files.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/api/handlers/management/auth_files.go b/internal/api/handlers/management/auth_files.go index 4422428b..7986b3fd 100644 --- a/internal/api/handlers/management/auth_files.go +++ b/internal/api/handlers/management/auth_files.go @@ -3,16 +3,17 @@ package management import ( "bytes" "context" - "encoding/hex" "crypto/rand" "crypto/sha256" "encoding/base64" + "encoding/hex" "encoding/json" "errors" "fmt" "io" "net" "net/http" + "net/url" "os" "path/filepath" "sort"