Add error-handling for WindowsVersion-stuff

This commit is contained in:
Raskaro
2019-08-12 11:50:38 +02:00
parent 0a5981c657
commit 6867a9b174
3 changed files with 33 additions and 1 deletions

8
core/os_default.go Normal file
View File

@@ -0,0 +1,8 @@
// +build !windows
package core
// only return on Fatal error!
func startPlatformSpecific() error {
return nil
}