Skip to content

Instantly share code, notes, and snippets.

@khyberspache
Created January 19, 2021 14:59
Embed
What would you like to do?
Define build for non-windows platforms
//+build !windows
package commands
func CallNativeAPI(task string) (string, int, int) {
return "Not implemented for non-Windows platforms", 1, -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment