fix: Pacakge name bug.

Mix up package name and module name.
This commit is contained in:
Yuki 2025-06-14 00:40:46 +08:00
parent 4ff8db06db
commit e36228b949
Signed by: yuki
GPG Key ID: 0E266240CCAD7A90
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package git.alienyuki.com/yuki/hellogomod
package hellogomod
func SayHello(name string) string {
return "Hello, " + name + "!"

View File

@ -1,4 +1,4 @@
package git.alienyuki.com/yuki/hellogomod
package hellogomod
import "testing"