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