summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Magnusson <mathias@magnusson.space>2026-01-23 18:46:51 +0100
committerMathias Magnusson <mathias@magnusson.space>2026-01-23 18:46:51 +0100
commit1bcb9bd6345c28da9c18ab4e820d58942d3fe74e (patch)
treecc105e73d86a1be9fb70c8ccffd7abe6778ad43e
parent0d2eb7a705c74818f3782076c5965339d4ef8548 (diff)
downloadhh-1bcb9bd6345c28da9c18ab4e820d58942d3fe74e.tar.gz
Move repository again
-rw-r--r--cmd/generate/main.go2
-rw-r--r--cmd/generate/templates.go.tmpl2
-rw-r--r--examples/basic.go2
-rw-r--r--go.mod4
4 files changed, 5 insertions, 5 deletions
diff --git a/cmd/generate/main.go b/cmd/generate/main.go
index ea80683..feed0f0 100644
--- a/cmd/generate/main.go
+++ b/cmd/generate/main.go
@@ -77,7 +77,7 @@ func run() error {
parsedPackage := Package{
Imports: []string{
- "git.magnusson.space/hh",
+ "git.0m.nu/hh",
"log/slog",
"net/http",
"github.com/google/uuid",
diff --git a/cmd/generate/templates.go.tmpl b/cmd/generate/templates.go.tmpl
index 34be15c..e1201e0 100644
--- a/cmd/generate/templates.go.tmpl
+++ b/cmd/generate/templates.go.tmpl
@@ -1,5 +1,5 @@
// WARNING: this file has been automatically generated by
-// git.magnusson.space/hh. DO NOT EDIT MANUALLY!
+// git.0m.nu/hh. DO NOT EDIT MANUALLY!
package {{ .PackageName }}
diff --git a/examples/basic.go b/examples/basic.go
index eaa0a9b..693ef57 100644
--- a/examples/basic.go
+++ b/examples/basic.go
@@ -7,7 +7,7 @@ import (
"github.com/google/uuid"
)
-//go:generate go run git.magnusson.space/hh/cmd/generate
+//go:generate go run git.0m.nu/hh/cmd/generate
// Big bungus function here!
//
diff --git a/go.mod b/go.mod
index 506f325..b495f7d 100644
--- a/go.mod
+++ b/go.mod
@@ -1,5 +1,5 @@
-module git.magnusson.space/hh
+module git.0m.nu/hh
-go 1.23.6
+go 1.25.6
require github.com/google/uuid v1.6.0