728x90

## CRUD(Create Read Update Delete)
기본적으로 CREATE: POST, READ: GET, UPDATE: PUT, DELETE: DELETE로 대응

## Example
GET: /posts/getPosts (X) -> GET: /posts (O)
GET: /posts/createPost (X) -> POST: /posts (O)
GET: /posts/1, PUT: /posts/1, DELETE: /posts/1 (O)
GET: /posts/1/tags (X) -> GET: /tags/?postId=1 OR /tags/?query=cool (O)

+ Recent posts