Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Created May 25, 2018 20:09
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 Cibernomadas/3c3c80a75600268e44cdab2ccc0669dc to your computer and use it in GitHub Desktop.
Save Cibernomadas/3c3c80a75600268e44cdab2ccc0669dc to your computer and use it in GitHub Desktop.
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "¡Hola Mundo!",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment