From 1ea0cff3a45067f7c4839c728c3e59d92f521112 Mon Sep 17 00:00:00 2001 From: Ravens2121 Date: Sat, 13 Dec 2025 12:57:47 +0800 Subject: [PATCH] fix: add missing import declarations for net and time packages --- internal/api/modules/amp/proxy.go | 1 + internal/runtime/executor/proxy_helpers.go | 1 + 2 files changed, 2 insertions(+) diff --git a/internal/api/modules/amp/proxy.go b/internal/api/modules/amp/proxy.go index 6ea092c4..91716e36 100644 --- a/internal/api/modules/amp/proxy.go +++ b/internal/api/modules/amp/proxy.go @@ -7,6 +7,7 @@ import ( "errors" "fmt" "io" + "net" "net/http" "net/http/httputil" "net/url" diff --git a/internal/runtime/executor/proxy_helpers.go b/internal/runtime/executor/proxy_helpers.go index 4cda7b16..8998eb23 100644 --- a/internal/runtime/executor/proxy_helpers.go +++ b/internal/runtime/executor/proxy_helpers.go @@ -7,6 +7,7 @@ import ( "net/url" "strings" "sync" + "time" "github.com/router-for-me/CLIProxyAPI/v6/internal/config" cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth"