go-api
Installation
SKILL.md
Go API Development
Overview
Go is excellent for building high-performance APIs. Its concurrency model, fast compilation, and simple deployment make it ideal for microservices and REST APIs.
Process
1. Project Setup
mkdir myapi && cd myapi
go mod init github.com/username/myapi
# Choose router: chi, gin, fiber, or stdlib
go get github.com/go-chi/chi/v5