From 797d92a96bdc203293a486b20a8b5a781348a46e Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Thu, 21 Mar 2019 22:30:27 -0600 Subject: [PATCH] Fixed TLD in module path --- example/example.go | 2 +- go.mod | 2 +- hatmill_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/example.go b/example/example.go index 8d87d03..1971f1d 100644 --- a/example/example.go +++ b/example/example.go @@ -1,7 +1,7 @@ package main import ( - h "gitlab.codemonkeysoftware.com/b/hatmill" + h "gitlab.codemonkeysoftware.net/b/hatmill" "os" ) diff --git a/go.mod b/go.mod index 0274e76..71e73bb 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitlab.codemonkeysoftware.com/b/hatmill +module gitlab.codemonkeysoftware.net/b/hatmill require github.com/leanovate/gopter v0.2.4 diff --git a/hatmill_test.go b/hatmill_test.go index b3c311a..f71707e 100644 --- a/hatmill_test.go +++ b/hatmill_test.go @@ -11,7 +11,7 @@ import ( "github.com/leanovate/gopter" "github.com/leanovate/gopter/gen" "github.com/leanovate/gopter/prop" - "gitlab.codemonkeysoftware.com/b/hatmill" + "gitlab.codemonkeysoftware.net/b/hatmill" ) type NopWriter struct{}