This commit is contained in:
zyj
2025-09-19 00:27:19 +08:00
commit 0c2a78f91b
50 changed files with 11293 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 + "!"
}