mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 04:40:41 +08:00
10 lines
200 B
Go
10 lines
200 B
Go
//go:build !devtools
|
|
|
|
package app
|
|
|
|
// IsDevtoolsEnabled returns true if devtools should be enabled
|
|
// Note: devtools flag is also added in debug builds
|
|
func IsDevtoolsEnabled() bool {
|
|
return false
|
|
}
|