gin
Installation
SKILL.md
Gin Core Knowledge
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:ginfor comprehensive documentation.
Basic Setup
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
r := gin.Default() // Logger and Recovery middleware
r.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "Hello, World!")
})