Skip to content

Commit a96f8db

Browse files
committed
fix: module name
1 parent 0fade7e commit a96f8db

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

cmd/istio-mcp-server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/istio-mcp-server/pkg/istio-mcp-server/cmd"
3+
import "github.com/krutsko/istio-mcp-server/pkg/istio-mcp-server/cmd"
44

55
func main() {
66
cmd.Execute()

cmd/istio-mcp-server/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"testing"
66

7-
"github.com/istio-mcp-server/pkg/istio-mcp-server/cmd"
7+
"github.com/krutsko/istio-mcp-server/pkg/istio-mcp-server/cmd"
88
)
99

1010
// TestMain tests the main function and cmd package integration

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/istio-mcp-server
1+
module github.com/krutsko/istio-mcp-server
22

33
go 1.24.1
44

pkg/istio-mcp-server/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strconv"
99
"strings"
1010

11-
"github.com/istio-mcp-server/pkg/mcp"
12-
"github.com/istio-mcp-server/pkg/version"
11+
"github.com/krutsko/istio-mcp-server/pkg/mcp"
12+
"github.com/krutsko/istio-mcp-server/pkg/version"
1313
"github.com/spf13/cobra"
1414
"github.com/spf13/viper"
1515
"golang.org/x/net/context"

pkg/mcp/mcp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"net/http"
66

7-
"github.com/istio-mcp-server/pkg/istio"
8-
"github.com/istio-mcp-server/pkg/version"
7+
"github.com/krutsko/istio-mcp-server/pkg/istio"
8+
"github.com/krutsko/istio-mcp-server/pkg/version"
99
"github.com/mark3labs/mcp-go/mcp"
1010
"github.com/mark3labs/mcp-go/server"
1111
)

0 commit comments

Comments
 (0)