mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-07 04:40:05 +08:00
15 lines
217 B
Go
15 lines
217 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() {}
|