mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-07 00:51:49 +08:00
8 lines
125 B
Go
8 lines
125 B
Go
package main
|
|
|
|
type GreetService struct{}
|
|
|
|
func (g *GreetService) Greet(name string) string {
|
|
return "Hello " + name + "!"
|
|
}
|