5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-05 08:20:23 +08:00
wails/v3/pkg/application/application_debug.go

14 lines
264 B
Go

//go:build !production
package application
// We use this to patch the application to production mode.
func newApplication(options *Options) *App {
result := &App{
isDebugMode: true,
options: options.getOptions(true),
}
result.init()
return result
}