mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-05 04:31:26 +08:00
15 lines
236 B
Go
15 lines
236 B
Go
//go:build production
|
|
|
|
package application
|
|
|
|
func newApplication(options *Options) *App {
|
|
result := &App{
|
|
isDebugMode: false,
|
|
options: options.getOptions(false),
|
|
}
|
|
result.init()
|
|
return result
|
|
}
|
|
|
|
func (a *App) logStartup() {}
|