Skip to content

Commit

Permalink
add: readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sum1t-here committed Oct 18, 2024
1 parent affe9d0 commit 9adaef3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/APIs/Crud_API/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Ignore all Markdown files
*.md

# You can also ignore specific files or directories if needed
node_modules/
dist/
11 changes: 11 additions & 0 deletions packages/APIs/Crud_API/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### API Summary 📝


Operation | HTTP Method | Endpoint | Description | Example Response
-- | -- | -- | -- | --
Create | POST | /resource | Create a new resource | 201 Created
Read | GET | /resource | Retrieve all resources | 200 OK
Read | GET | /resource/:id | Retrieve a specific resource | 200 OK
Update | PUT | /resource/:id | Update a specific resource | 200 OK
Delete | DELETE | /resource/:id | Delete a specific resource | 200 OK

0 comments on commit 9adaef3

Please sign in to comment.