Files
sea/greetservice.go
T

8 lines
125 B
Go
Raw Normal View History

2026-07-13 13:02:23 +00:00
package main
type GreetService struct{}
func (g *GreetService) Greet(name string) string {
return "Hello " + name + "!"
}