diff options
author | Markus Wüstenberg | 2024-10-03 11:26:44 +0200 |
---|---|---|
committer | GitHub | 2024-10-03 11:26:44 +0200 |
commit | fe24f0575214093cc72201ecc1cc463865dcb1e2 (patch) | |
tree | 0a96f8c9162c05f93a5506ec1cf85aef48bb8106 /gomponents_test.go | |
parent | a58043d58789f95046a567d2ad1bde55e352d5f0 (diff) | |
download | gomponents-fe24f0575214093cc72201ecc1cc463865dcb1e2.tar.lz gomponents-fe24f0575214093cc72201ecc1cc463865dcb1e2.tar.zst gomponents-fe24f0575214093cc72201ecc1cc463865dcb1e2.zip |
Move module to maragu.dev/gomponents namespace (#215)
This is a breaking change to move gomponents to my own import namespace. I will obviously be careful with this, test it out in all kinds of scenarios, release betas, etc. But otherwise, because the `Node` interface is so simple and has basically never changed, I don't think this will break much. 🤞 Fixes #200
Diffstat (limited to 'gomponents_test.go')
-rw-r--r-- | gomponents_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gomponents_test.go b/gomponents_test.go index 026cde4..a6e8836 100644 --- a/gomponents_test.go +++ b/gomponents_test.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - g "github.com/maragudk/gomponents" - "github.com/maragudk/gomponents/internal/assert" + g "maragu.dev/gomponents" + "maragu.dev/gomponents/internal/assert" ) func TestNodeFunc(t *testing.T) { |