feat: Change package name.

Change package name since URL is identity in go.
This commit is contained in:
Yuki 2025-06-14 00:19:17 +08:00
parent 0b8c840f11
commit 4ff8db06db
Signed by: yuki
GPG Key ID: 0E266240CCAD7A90
3 changed files with 3 additions and 3 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module hellogomod
module git.alienyuki.com/yuki/hellogomod
go 1.24.4

View File

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

View File

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