mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 05:30:22 +08:00
15 lines
181 B
Go
15 lines
181 B
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
type GreetService struct {
|
|
SomeVariable int
|
|
lowerCase string
|
|
}
|
|
|
|
func (*GreetService) Greet(name string) string {
|
|
return "Hello " + name
|
|
}
|