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
2 changes: 1 addition & 1 deletion events.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package runtime

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

Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ require (
require (
github.com/coder/websocket v1.8.14 // indirect
github.com/expr-lang/expr v1.17.8 // indirect
github.com/pilot-protocol/common v0.1.0 // indirect
github.com/pilot-protocol/common v0.2.0 // indirect
github.com/pilot-protocol/trustedagents v0.1.0 // indirect
)

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

replace github.com/pilot-protocol/common => ../common
6 changes: 3 additions & 3 deletions handshake.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"fmt"
"time"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
"github.com/TeoSlayer/pilotprotocol/pkg/daemon"
"github.com/TeoSlayer/pilotprotocol/pkg/protocol"
registryclient "github.com/TeoSlayer/pilotprotocol/pkg/registry/client"
"github.com/pilot-protocol/common/protocol"
registryclient "github.com/pilot-protocol/common/registry/client"
"github.com/pilot-protocol/handshake"
)

Expand Down
2 changes: 1 addition & 1 deletion identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"crypto/ed25519"
"errors"

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

Expand Down
2 changes: 1 addition & 1 deletion policy_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package runtime

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion streams.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"context"
"errors"

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

Expand Down
2 changes: 1 addition & 1 deletion zz_deps_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
"github.com/TeoSlayer/pilotprotocol/pkg/daemon"
"github.com/pilot-protocol/runtime"
)
Expand Down
2 changes: 1 addition & 1 deletion zz_listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
"github.com/TeoSlayer/pilotprotocol/pkg/daemon"
"github.com/pilot-protocol/runtime"
)
Expand Down
2 changes: 1 addition & 1 deletion zz_policy_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"testing"

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

Expand Down
4 changes: 2 additions & 2 deletions zz_streams_ceiling_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"strings"
"testing"

"github.com/TeoSlayer/pilotprotocol/pkg/coreapi"
"github.com/pilot-protocol/common/coreapi"
"github.com/TeoSlayer/pilotprotocol/pkg/daemon"
"github.com/TeoSlayer/pilotprotocol/pkg/protocol"
"github.com/pilot-protocol/common/protocol"
"github.com/pilot-protocol/handshake"
"github.com/pilot-protocol/runtime"
)
Expand Down
Loading