Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilgooz/eres
Simple JSON Error Responses
https://github.com/ilgooz/eres
Last synced: about 1 month ago
JSON representation
Simple JSON Error Responses
- Host: GitHub
- URL: https://github.com/ilgooz/eres
- Owner: ilgooz
- Created: 2015-09-28T01:21:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-30T07:08:46.000Z (about 9 years ago)
- Last Synced: 2024-04-17T20:13:43.142Z (7 months ago)
- Language: Go
- Homepage: https://godoc.org/github.com/ilgooz/eres
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
produces errors in following format
```go
// HTTP 400
{
"message": "Invalid Data",
"fields": {
"email": "must be a valid email address",
"password": "must be min 3 chars length"
}
}
```