wails/v3/examples/custom-protocol-example/greetservice.go
2025-05-18 16:32:33 -04:00

7 lines
125 B
Go

package main
type GreetService struct{}
func (g *GreetService) Greet(name string) string {
return "Hello " + name + "!"
}