diff --git a/go.mod b/go.mod index c88dd1b..35783f3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module dappco.re/go/core/update +module dappco.re/go/update go 1.26.0 diff --git a/service.go b/service.go index dce2f66..11ea733 100644 --- a/service.go +++ b/service.go @@ -1,4 +1,4 @@ -//go:generate go run dappco.re/go/core/update/build +//go:generate go run dappco.re/go/update/build // Package updater provides functionality for self-updating Go applications. // It supports updates from GitHub releases and generic HTTP endpoints. diff --git a/service_examples_test.go b/service_examples_test.go index e9d964d..42d2b3d 100644 --- a/service_examples_test.go +++ b/service_examples_test.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - updater "dappco.re/go/core/update" + updater "dappco.re/go/update" ) func ExampleNewUpdateService() {