5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 14:29:50 +08:00
wails/v2/internal/app/debug.go
2020-10-09 11:50:45 +11:00

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
}