gin

Installation
SKILL.md

Gin Web Framework

Expert guidance for building modern HTTP web applications and REST APIs using the Gin web framework in Go.

Quick Start

Basic Server

package main

import (
    "net/http"
    "github.com/gin-gonic/gin"
)

func main() {
    r := gin.Default() // Creates router with Logger and Recovery middleware
Installs
2
First Seen
Mar 20, 2026
gin from smithery.ai