feat: Add sub module.

Add ymod as a sub module.
This commit is contained in:
Yuki 2025-06-14 17:24:29 +08:00
parent 1bacd716c7
commit b49e323ea4
Signed by: yuki
GPG Key ID: 0E266240CCAD7A90
2 changed files with 8 additions and 0 deletions

3
ymod/go.mod Normal file
View File

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

5
ymod/ylib.go Normal file
View File

@ -0,0 +1,5 @@
package ylib
func YHello() string {
return "Hello, yuki!"
}