gin/ginS
2019-03-21 15:12:06 +08:00
..
gins.go chore: update ginS (#1822) 2019-03-21 15:12:06 +08:00
README.md fix markdown render style (#943) 2017-06-12 22:35:10 -05:00

Gin Default Server

This is API experiment for Gin.

package main

import (
	"github.com/gin-gonic/gin"
	"github.com/gin-gonic/gin/ginS"
)

func main() {
	ginS.GET("/", func(c *gin.Context) { c.String(200, "Hello World") })
	ginS.Run()
}