mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 15:11:53 +08:00
9 lines
144 B
Go
9 lines
144 B
Go
//go:build !devtools
|
|
|
|
package app
|
|
|
|
// Note: devtools flag is also added in debug builds
|
|
func IsDevtoolsEnabled() bool {
|
|
return false
|
|
}
|