mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 14:29:50 +08:00
10 lines
149 B
Go
10 lines
149 B
Go
// +build debug
|
|
|
|
package app
|
|
|
|
// Init initialises the application for a debug environment
|
|
func (a *App) Init() error {
|
|
a.debug = true
|
|
return nil
|
|
}
|