田欧 d510595aa5 chore: add some annotations (#1544) hace 7 años
..
README.md 9ee5afff48 fix markdown render style (#943) hace 8 años
gins.go d510595aa5 chore: add some annotations (#1544) hace 7 años

README.md

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()
}