Files

10 lines
200 B
Go
Raw Permalink Normal View History

2023-11-12 12:30:49 +11:00
//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
}