Skip to content

Commit 8b375c0

Browse files
authored
Merge pull request #16 from blib/dev
Fix: Standardize Go module import paths
2 parents 9f2842d + 422a40d commit 8b375c0

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

src/mcp/cmd/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"quint-mcp/db"
10+
"github.com/m0n0x41d/quint-code/db"
1111

1212
"github.com/spf13/cobra"
1313
)

src/mcp/cmd/serve.go

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

9-
"quint-mcp/db"
10-
"quint-mcp/internal/fpf"
9+
"github.com/m0n0x41d/quint-code/db"
10+
"github.com/m0n0x41d/quint-code/internal/fpf"
1111

1212
"github.com/spf13/cobra"
1313
)

src/mcp/go.mod

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

33
go 1.24.0
44

src/mcp/internal/fpf/actualize_test.go

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

10-
"quint-mcp/db"
11-
"quint-mcp/internal/fpf"
10+
"github.com/m0n0x41d/quint-code/db"
11+
"github.com/m0n0x41d/quint-code/internal/fpf"
1212
)
1313

1414
func TestActualize_GitReconciliation(t *testing.T) {

src/mcp/internal/fpf/assurance_integration_test.go

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

11-
"quint-mcp/assurance"
12-
"quint-mcp/db"
13-
"quint-mcp/internal/fpf"
11+
"github.com/m0n0x41d/quint-code/assurance"
12+
"github.com/m0n0x41d/quint-code/db"
13+
"github.com/m0n0x41d/quint-code/internal/fpf"
1414
)
1515

1616
func setupAssuranceTestEnv(t *testing.T) (*fpf.FSM, *db.Store, string) {

src/mcp/internal/fpf/fsm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path/filepath"
1010
"strings"
1111

12-
"quint-mcp/assurance"
12+
"github.com/m0n0x41d/quint-code/assurance"
1313
)
1414

1515
// Phase definitions

src/mcp/internal/fpf/integration_test.go

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

10-
"quint-mcp/db"
11-
"quint-mcp/internal/fpf"
10+
"github.com/m0n0x41d/quint-code/db"
11+
"github.com/m0n0x41d/quint-code/internal/fpf"
1212
)
1313

1414
// Helper to get FPF knowledge path for a level

src/mcp/internal/fpf/preconditions_test.go

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

8-
"quint-mcp/db"
8+
"github.com/m0n0x41d/quint-code/db"
99
)
1010

1111
func TestCheckPreconditions_Propose(t *testing.T) {

src/mcp/internal/fpf/projection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"regexp"
1010
"strings"
1111

12-
"quint-mcp/db"
12+
"github.com/m0n0x41d/quint-code/db"
1313
)
1414

1515
type TamperingEvent struct {

src/mcp/internal/fpf/projection_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"testing"
88

9-
"quint-mcp/db"
9+
"github.com/m0n0x41d/quint-code/db"
1010
)
1111

1212
var ctx = context.Background()

0 commit comments

Comments
 (0)