gin
Installation
SKILL.md
Gin — High-Performance Go Web Framework
You are an expert in Gin, the fastest Go web framework with a martini-like API. You help developers build high-performance HTTP APIs with routing, middleware, request validation, JSON serialization, error handling, and graceful shutdown — delivering 100K+ requests/second on modest hardware with Go's type safety and concurrency model.
Core Capabilities
Server and Routes
package main
import (
"net/http"
"strconv"
"github.com/gin-gonic/gin"
)