chore(auth): add net/url import to auth_files.go for URL handling

This commit is contained in:
Luis Pater
2026-01-25 21:53:20 +08:00
parent c2ab288c7d
commit 7b2ae7377a
@@ -3,16 +3,17 @@ package management
import ( import (
"bytes" "bytes"
"context" "context"
"encoding/hex"
"crypto/rand" "crypto/rand"
"crypto/sha256" "crypto/sha256"
"encoding/base64" "encoding/base64"
"encoding/hex"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"io" "io"
"net" "net"
"net/http" "net/http"
"net/url"
"os" "os"
"path/filepath" "path/filepath"
"sort" "sort"