diff --git a/README.md b/README.md index 0e442aa..892d75e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ +# Endpoints + +| Method | URL Pattern | Handler | Action | +|--------|-----------------|---------------------|--------------------------------------| +| GET | /v1/healthcheck | healthCheckHandler | Show application information | +| GET | /v1/movies | listMoviesHandler | Show the details of all movies | +| POST | /v1/movies | createMoviesHandler | Create a new movie | +| GET | /v1/movies/:id | showMovieHandler | Show the details of a specific movie | +| PUT | /v1/movies/:id | editMovieHandler | Edit the details of a specific movie | +| DELETE | /v1/movies/:id | deleteMovieHandler | Delete a specific movie | + # Installation ## Launch API