restGin / main.go
oriastanjung's picture
test
dd56be9
raw
history blame contribute delete
208 Bytes
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
app := gin.Default()
app.GET("/", func(ctx *gin.Context) {
ctx.JSON(http.StatusOK, "hello world")
})
app.Run(":4037")
}