mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 21:10:54 +08:00
10 lines
185 B
Go
10 lines
185 B
Go
// +build !debug
|
|
|
|
package app
|
|
|
|
// Init initialises the application for a production environment
|
|
func (a *App) Init() error {
|
|
println("Processing production cli options")
|
|
return nil
|
|
}
|