5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 12:41:55 +08:00
wails/v3/pkg/application/application_production.go
Lea Anthony e5c14d24ae
Initial implementation of dev mode.
Huge thanks to @atterpac!
2024-01-19 21:34:49 +11:00

17 lines
262 B
Go

//go:build production
package application
func newApplication(options Options) *App {
result := &App{
isDebugMode: false,
options: options,
}
result.init()
return result
}
func (a *App) logStartup() {}
func (a *App) preRun() error { return nil }