Initial commit

This commit is contained in:
rl544
2026-06-25 07:43:27 +09:00
commit c0814f4315
4494 changed files with 11587 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package main
type GreetService struct{}
func (g *GreetService) Greet(name string) string {
return "Hello " + name + "!"
}