From 0239dad8ef97d70b160d4f4101603bfc192396a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20W=C3=BCstenberg?= Date: Thu, 5 Sep 2024 11:48:31 +0200 Subject: [PATCH] Move module to maragu.dev/httph (#8) --- README.md | 4 ++++ go.mod | 2 +- httph_test.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d75b3d..b823c43 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,8 @@ HTTP helpers and middleware. H is for helpful! +```shell +go get maragu.dev/httph +``` + Made in 🇩🇰 by [maragu](https://www.maragu.dk/), maker of [online Go courses](https://www.golang.dk/). diff --git a/go.mod b/go.mod index 78f04ac..9292055 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/maragudk/httph +module maragu.dev/httph go 1.19 diff --git a/httph_test.go b/httph_test.go index c48b5d6..fd322ca 100644 --- a/httph_test.go +++ b/httph_test.go @@ -12,7 +12,7 @@ import ( "github.com/maragudk/is" - "github.com/maragudk/httph" + "maragu.dev/httph" ) type validatedFormReq struct{}