...

Text file src/github.com/gin-gonic/gin/ginS/README.md

Documentation: github.com/gin-gonic/gin/ginS

     1# Gin Default Server
     2
     3This is API experiment for Gin.
     4
     5```go
     6package main
     7
     8import (
     9	"github.com/gin-gonic/gin"
    10	"github.com/gin-gonic/gin/ginS"
    11)
    12
    13func main() {
    14	ginS.GET("/", func(c *gin.Context) { c.String(200, "Hello World") })
    15	ginS.Run()
    16}
    17```

View as plain text