Skip to content

Commit 34b93d2

Browse files
anubissbeclaude
andcommitted
fix: Remove unused imports and variables in catalog.go
- Removed unused encoding/json and io/ioutil imports - Commented out unused tag variable 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent fc42679 commit 34b93d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

backend/mcp/catalog.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package mcp
22

33
import (
4-
"encoding/json"
54
"fmt"
6-
"io/ioutil"
75
"net/http"
86
"strings"
97
"time"
@@ -259,7 +257,7 @@ func GetPredefinedConfig(fullName string) (*MCPConfig, error) {
259257
}
260258

261259
imageName := parts[0]
262-
tag := parts[1]
260+
// tag := parts[1] // Reserved for future use
263261

264262
// Return predefined configs for known servers
265263
switch imageName {

0 commit comments

Comments
 (0)