Created
August 23, 2016 11:02
-
-
Save shimastripe/78760d8017999bfe1509ca1c60c141dc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
if version.Range(ver, "<", "1.0.0") { | |
// conditional branch by version. | |
// this version < 1.0.0 !! | |
c.JSON(400, gin.H{"error": "this version (< 1.0.0) is not supported!"}) | |
return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment