Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 12, 2021 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/59ab0dce73cc9e75f30a76d4fc287c30 to your computer and use it in GitHub Desktop.
Save parzibyte/59ab0dce73cc9e75f30a76d4fc287c30 to your computer and use it in GitHub Desktop.
func estamosEnLinux() bool {
return strings.Contains(runtime.GOOS, "linux")
}
func estamosEnWindows() bool {
return strings.Contains(runtime.GOOS, "windows")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment