refactor: rename net/types to nettypes

This commit is contained in:
yusing
2025-06-08 17:59:48 +08:00
parent 01773976d1
commit 421aaecba4
26 changed files with 79 additions and 97 deletions

View File

@@ -3,7 +3,7 @@ package homepage
import (
"net/http"
gpnet "github.com/yusing/go-proxy/internal/net/types"
nettypes "github.com/yusing/go-proxy/internal/net/types"
"github.com/yusing/go-proxy/internal/utils/pool"
)
@@ -11,7 +11,7 @@ type route interface {
pool.Object
ProviderName() string
References() []string
TargetURL() *gpnet.URL
TargetURL() *nettypes.URL
}
type httpRoute interface {