5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 23:41:38 +08:00
wails/v3/pkg/application/application_production.go
2023-05-30 16:33:34 +08:00

11 lines
167 B
Go

//go:build production
package application
// We use this to patch the application to production mode.
func init() {
isDebugMode = func() bool {
return false
}
}