A simple RESTful API built in Go to manage a list of movies. It uses the Gorilla Mux router and supports basic CRUD (Create, Read, Update, Delete) operations.
- List all movies (
GET /movies) - Get a single movie by ID (
GET /movies/{id}) - Create a new movie (
POST /movies) - Update an existing movie (
PUT /movies/{id}) - Delete a movie (
DELETE /movies/{id})
- Language: Go (Golang)
- Routing: Gorilla Mux
- Encoding/Decoding:
encoding/json