From b35a8d2ada5496f8605a5379d21aa1155ab8aa9f Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 24 Apr 2026 20:22:22 +0100 Subject: [PATCH] chore(go-update): migrate module path to dappco.re/go/update Dropped the stale `core` segment per RFC. Updated go.mod + service.go go:generate subpath + service_examples_test.go. Pre-existing go.mod core-dep resolution gap (requires core@v0.3.1 which declares forge.lthn.ai path) is unrelated and out of this ticket's scope. Closes tasks.lthn.sh/view.php?id=762 Co-authored-by: Codex --- go.mod | 2 +- service.go | 2 +- service_examples_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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() {