mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
7 lines
125 B
Go
7 lines
125 B
Go
package main
|
|
|
|
type GreetService struct{}
|
|
|
|
func (g *GreetService) Greet(name string) string {
|
|
return "Hello " + name + "!"
|
|
}
|