ℹ️ README: This file contains configuration values that require computation to be useful. IsWindowsRuntime returns true if the current runtime in Windows.
()
| 13 | |
| 14 | // IsWindowsRuntime returns true if the current runtime in Windows. |
| 15 | func IsWindowsRuntime() bool { |
| 16 | return runtime.GOOS == "windows" |
| 17 | } |
| 18 | |
| 19 | // IsProdMode returns true if the application is running in production mode. |
| 20 | func IsProdMode() bool { |
no outgoing calls
no test coverage detected