mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 04:11:05 +08:00

* Tidy up dev mode output * Rename `appng` package to `app` * Remove `crypto`,`parse`,`messagedispatcher`,`servicebus`,`runtime`,`subsystem`,`ffenestri` packages and `.vscode` dir * Remove misc `fs` functions * Remove `str` package * Fix redundant alias
9 lines
84 B
Go
9 lines
84 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package app
|
|
|
|
func IsDebug() bool {
|
|
return true
|
|
}
|