Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/pilot-protocol/skillinject

go 1.25.10

require github.com/TeoSlayer/pilotprotocol v0.0.0
require github.com/pilot-protocol/common v0.1.0

replace github.com/TeoSlayer/pilotprotocol => ../web4

replace github.com/pilot-protocol/common => ../common
2 changes: 1 addition & 1 deletion service.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package skillinject

import (
"context"
"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
)


Expand Down
2 changes: 1 addition & 1 deletion service_disabled.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ package skillinject
import (
"context"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
)

// Service is a no-op replacement for the real plugin Service. Same
Expand Down
2 changes: 1 addition & 1 deletion zz_micro_branches_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
"testing"
"time"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
)

// verifyMarshalRoundTrip: bytes have our id in allow but the entry
Expand Down
2 changes: 1 addition & 1 deletion zz_more_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"testing"
"time"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
)

func TestSetEnabled_RoundtripsThroughDisk(t *testing.T) {
Expand Down
Loading