mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:10:48 +08:00
11 lines
188 B
Go
11 lines
188 B
Go
// +build debug
|
|
|
|
package app
|
|
|
|
// Init initialises the application for a debug environment
|
|
func (a *App) Init() error {
|
|
a.debug = true
|
|
println("Initialising debug options")
|
|
return nil
|
|
}
|