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: 2 additions & 2 deletions go/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"fmt"
"log"

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

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/echo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"flag"
"log"

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

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/pilot-protocol/examples/go

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

Expand Down
4 changes: 2 additions & 2 deletions go/httpclient/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"io"
"log"

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

func main() {
Expand Down
6 changes: 3 additions & 3 deletions go/secure/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"log"
"net"

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

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/webserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"log"
"net/http"

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

func main() {
Expand Down
Loading