Skip to content

Commit f9b8155

Browse files
committed
refactor: change Go module path to github.com/AI4quantum/maestro-mcp
- Update go.mod module declaration - Update all import statements in source files - Update import statements in test files - Update release workflow ldflags - Run go mod tidy to update dependencies - Verify build still works with new module path
1 parent bc79d8c commit f9b8155

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,27 +63,27 @@ jobs:
6363
# Build for different platforms
6464
GOOS=linux GOARCH=amd64 go build \
6565
-ldflags \
66-
"-X github.com/maximilien/maestro-mcp/src/pkg/config.Version=$VERSION" \
66+
"-X github.com/AI4quantum/maestro-mcp/src/pkg/config.Version=$VERSION" \
6767
-o release/maestro-mcp-linux-amd64 \
6868
./src/main.go
6969
GOOS=linux GOARCH=arm64 go build \
7070
-ldflags \
71-
"-X github.com/maximilien/maestro-mcp/src/pkg/config.Version=$VERSION" \
71+
"-X github.com/AI4quantum/maestro-mcp/src/pkg/config.Version=$VERSION" \
7272
-o release/maestro-mcp-linux-arm64 \
7373
./src/main.go
7474
GOOS=darwin GOARCH=amd64 go build \
7575
-ldflags \
76-
"-X github.com/maximilien/maestro-mcp/src/pkg/config.Version=$VERSION" \
76+
"-X github.com/AI4quantum/maestro-mcp/src/pkg/config.Version=$VERSION" \
7777
-o release/maestro-mcp-darwin-amd64 \
7878
./src/main.go
7979
GOOS=darwin GOARCH=arm64 go build \
8080
-ldflags \
81-
"-X github.com/maximilien/maestro-mcp/src/pkg/config.Version=$VERSION" \
81+
"-X github.com/AI4quantum/maestro-mcp/src/pkg/config.Version=$VERSION" \
8282
-o release/maestro-mcp-darwin-arm64 \
8383
./src/main.go
8484
GOOS=windows GOARCH=amd64 go build \
8585
-ldflags \
86-
"-X github.com/maximilien/maestro-mcp/src/pkg/config.Version=$VERSION" \
86+
"-X github.com/AI4quantum/maestro-mcp/src/pkg/config.Version=$VERSION" \
8787
-o release/maestro-mcp-windows-amd64.exe \
8888
./src/main.go
8989

go.mod

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

33
go 1.21
44

main

10.6 MB
Binary file not shown.

src/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os/signal"
88
"syscall"
99

10-
"github.com/maximilien/maestro-mcp/src/pkg/config"
11-
"github.com/maximilien/maestro-mcp/src/pkg/server"
10+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
11+
"github.com/AI4quantum/maestro-mcp/src/pkg/server"
1212
"go.uber.org/zap"
1313
)
1414

src/pkg/mcp/handlers.go

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

7-
"github.com/maximilien/maestro-mcp/src/pkg/vectordb"
7+
"github.com/AI4quantum/maestro-mcp/src/pkg/vectordb"
88
"go.uber.org/zap"
99
)
1010

src/pkg/mcp/server.go

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

11-
"github.com/maximilien/maestro-mcp/src/pkg/config"
12-
"github.com/maximilien/maestro-mcp/src/pkg/vectordb"
11+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
12+
"github.com/AI4quantum/maestro-mcp/src/pkg/vectordb"
1313
"go.uber.org/zap"
1414
)
1515

src/pkg/server/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"net/http"
77
"time"
88

9-
"github.com/maximilien/maestro-mcp/src/pkg/config"
10-
"github.com/maximilien/maestro-mcp/src/pkg/mcp"
9+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
10+
"github.com/AI4quantum/maestro-mcp/src/pkg/mcp"
1111
"go.uber.org/zap"
1212
)
1313

src/pkg/vectordb/interface.go

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

7-
"github.com/maximilien/maestro-mcp/src/pkg/config"
7+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
88
)
99

1010
// VectorDatabase defines the interface for vector database operations

src/pkg/vectordb/milvus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/maximilien/maestro-mcp/src/pkg/config"
8+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
99
"go.uber.org/zap"
1010
)
1111

src/pkg/vectordb/weaviate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/maximilien/maestro-mcp/src/pkg/config"
8+
"github.com/AI4quantum/maestro-mcp/src/pkg/config"
99
"go.uber.org/zap"
1010
)
1111

0 commit comments

Comments
 (0)