mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 23:41:38 +08:00
11 lines
167 B
Go
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
|
|
}
|
|
}
|