Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opplieam/greenlight
https://github.com/opplieam/greenlight
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/opplieam/greenlight
- Owner: opplieam
- Created: 2024-04-30T18:35:40.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-07T18:50:14.000Z (9 months ago)
- Last Synced: 2024-05-07T21:25:04.588Z (9 months ago)
- Language: Go
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Greenlight
Learning from Let's go further
| Method | URL Pattern | Handler | Actions |
|--------|---------------------------|----------------------------------|-------------------------------------|
| Get | /v1/healthcheck | healthcheckHandler | Show application information |
| Post | /v1/movies | createMovieHandler | Create movie |
| Get | /v1/movies | listMoviesHandler | Show details of all movies |
| Get | /v1/movies/:id | showMovieHandler | Show detail of movie :id |
| Put | /v1/movies/:id | updateMovieHandler | Update detail of movie :id |
| Delete | /v1/movies/:id | deleteMovieHandler | Delete movie :id |
| Post | /v1/users | registerUserHandler | Register a new user |
| Put | /v1/users/activated | activateUserHandler | Activate a specific user |
| Post | /v1/tokens/authentication | createAuthenticationTokenHandler | Generate a new authentication token |