From 3eb0023efde2d613524e89688d5db712353c6751 Mon Sep 17 00:00:00 2001 From: claude Date: Mon, 7 Sep 2026 14:18:05 +0100 Subject: [PATCH] use the real module path The module was code.aneur.in/cloud/ultrashorty but go.mod (and main.go's internal import) still said gogs.home.aneur.in/go/ultrashorty, a host that no longer exists. Self-consistent so it built, but wrong for anyone fetching it and confusing to read. Co-Authored-By: Claude Sonnet 5 --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 6ca2e9b..329d032 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gogs.home.aneur.in/go/ultrashorty +module code.aneur.in/cloud/ultrashorty go 1.25.6 diff --git a/main.go b/main.go index 88aae22..2681bbf 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "github.com/alecthomas/kong" "github.com/rs/zerolog" - "gogs.home.aneur.in/go/ultrashorty/internal" + "code.aneur.in/cloud/ultrashorty/internal" ) func main() {