🎉 Initial commit

This commit is contained in:
2025-04-22 22:41:35 +08:00
commit 598453076f
43 changed files with 1602 additions and 0 deletions

7
greetservice.go Normal file
View File

@@ -0,0 +1,7 @@
package main
type GreetService struct{}
func (g *GreetService) Greet(name string) string {
return "Hello " + name + "!"
}