3
0
mirror of https://github.com/gin-gonic/gin.git synced 2025-04-23 09:51:22 +08:00
田欧 d510595aa5 chore: add some annotations ()
ref:  
because I am not a native English, maybe have a bit problem.
2018-09-15 10:23:32 +08:00
..
2018-09-15 10:23:32 +08:00
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()
}