diff --git a/go.mod b/go.mod index 2d2b77e..2bd6dd1 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,8 @@ module github.com/pilot-protocol/updater 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 diff --git a/service.go b/service.go index 38734df..86d241a 100644 --- a/service.go +++ b/service.go @@ -8,7 +8,7 @@ package updater import ( "context" - "github.com/TeoSlayer/pilotprotocol/pkg/coreapi" + "github.com/pilot-protocol/common/coreapi" ) // Service is the L11 plugin lifecycle adapter for the updater. The diff --git a/service_disabled.go b/service_disabled.go index fd33f99..c9d4894 100644 --- a/service_disabled.go +++ b/service_disabled.go @@ -13,7 +13,7 @@ package updater import ( "context" - "github.com/TeoSlayer/pilotprotocol/pkg/coreapi" + "github.com/pilot-protocol/common/coreapi" ) // Service is a no-op replacement for the (today-unused) plugin diff --git a/zz_more_test.go b/zz_more_test.go index be01f23..f68b544 100644 --- a/zz_more_test.go +++ b/zz_more_test.go @@ -18,7 +18,7 @@ import ( "testing" "time" - "github.com/TeoSlayer/pilotprotocol/pkg/coreapi" + "github.com/pilot-protocol/common/coreapi" ) // TestService_Plugin exercises the L11 lifecycle no-op adapter.