Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
imantung committed Dec 28, 2020
1 parent 3947f48 commit 197ea4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ Pragmatic Golang RESTful Server Implementation. The project using [typical-go](h
- [x] Cache but revalidate (Header `Cache-Control: no-cache`)
- [x] Set Expiration Time (Header `Cache-Control: max-age=120`)
- [x] Return 304 if not modified (Header `If-Modified-Since: Sat, 31 Oct 2020 10:28:02 GMT`)
- [x] Request ID in logger
- [x] Request ID in logger (Header `X-Request-Id: xxx`)
- RESTful
- [x] Create Resource (`POST` verb)
- [x] Update Resource (`PUT` verb)
- [x] Partially Update Resource (`PATCH` verb)
- [x] Find Resource (`GET` verb)
- [x] Offset Pagination (Query param `?limit=100&offset=0`)
- [x] Sorting (Query param `?sort=-title,created_at`)
- [x] Total count (Header `X-Total-Count`)
- [x] Check resource (`HEAD` verb)
- [x] Delete resource (`DELETE` verb, idempotent)
- Testing
Expand Down

0 comments on commit 197ea4b

Please sign in to comment.