A simple REST API demo built with Go's standard library without any external depedencies or frameworks.
go run .go test -vgo build -o goraw .GET /health
GET /tasks
POST /tasks
GET /tasks/{id}
PUT /tasks/{id}
DELETE /tasks/{id}
- Go 1.22+
- Zero external dependencies
- In-memory store (resets on restart)