This commit is contained in:
David 2024-08-31 19:26:50 -04:00
commit ce33489afe
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module sub.git.yetaga.in
go 1.23.0

7
hello.go Normal file
View File

@ -0,0 +1,7 @@
package subdomainmodule
import "fmt"
func Hello(who string) string {
return fmt.Sprintf("Hello %s", who)
}