mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 09:39:56 +08:00

* Update nsis template * Move app data into config.yml * mac support * Add FileAssociations application config option Support `ApplicationOpenedWithFile` event on Windows Add docs * Add FileAssociations application config option Support `ApplicationOpenedWithFile` event on Windows Add docs Add test project * Update example & docs. Fix show window bug. * Fix window show event bug * Update changelog
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 + "!"
|
|
}
|