diff --git a/go.mod b/go.mod index 0e70688..f64d1a4 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module hellogomod +module git.alienyuki.com/yuki/hellogomod go 1.24.4 diff --git a/hello.go b/hello.go index 858b457..121b736 100644 --- a/hello.go +++ b/hello.go @@ -1,4 +1,4 @@ -package hellogomod +package git.alienyuki.com/yuki/hellogomod func SayHello(name string) string { return "Hello, " + name + "!" diff --git a/hello_test.go b/hello_test.go index 9ece53b..ae09410 100644 --- a/hello_test.go +++ b/hello_test.go @@ -1,4 +1,4 @@ -package hellogomod +package git.alienyuki.com/yuki/hellogomod import "testing"