mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 06:20:48 +08:00
9 lines
119 B
Go
9 lines
119 B
Go
package main
|
|
|
|
type GreetService struct {
|
|
}
|
|
|
|
func (*GreetService) Greet(name string) string {
|
|
return "Hello " + name
|
|
}
|