fix: 删除未使用的代码并修复格式

- 删除 client.go 中未使用的 proxyURL 字段
- 删除 AntigravityGatewayService 中未使用的字段和方法
- 修复 gofmt 格式问题
This commit is contained in:
song
2025-12-29 17:54:38 +08:00
parent 21a04332ec
commit 026740b5e5
4 changed files with 2 additions and 156 deletions

View File

@@ -74,7 +74,6 @@ func (r *LoadCodeAssistResponse) GetTier() string {
// Client Antigravity API 客户端
type Client struct {
httpClient *http.Client
proxyURL string
}
func NewClient(proxyURL string) *Client {
@@ -92,7 +91,6 @@ func NewClient(proxyURL string) *Client {
return &Client{
httpClient: client,
proxyURL: proxyURL,
}
}