Created
July 6, 2014 13:58
-
-
Save foliea/61f9a9c5715e06373bf0 to your computer and use it in GitHub Desktop.
dilemn.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param := "stop" | |
if api.APIVERSION.LessThan("1.14") { | |
param = "force" | |
} | |
var param string | |
if api.APIVERSION.LessThan("1.14") { | |
param = "force" | |
} else { | |
param = "stop" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment