package
0.0.0-20230331131523-deb0478a2e52
Repository: https://github.com/hellobchain/third_party.git
Documentation: pkg.go.dev
# README
Gin Default Server
This is API experiment for Gin.
package main
import (
"github.com/hellobchain/third_party/gin"
"github.com/hellobchain/third_party/gin/ginS"
)
func main() {
ginS.GET("/", func(c *gin.Context) { c.String(200, "Hello World") })
ginS.Run()
}