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