https://github.com/marioidival/crud-rust-mongodb
Create a simple Rust bin using MongoDB and Warp
https://github.com/marioidival/crud-rust-mongodb
api mongodb rust
Last synced: 6 months ago
JSON representation
Create a simple Rust bin using MongoDB and Warp
- Host: GitHub
- URL: https://github.com/marioidival/crud-rust-mongodb
- Owner: marioidival
- Created: 2018-09-26T00:39:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-10T20:39:10.000Z (over 6 years ago)
- Last Synced: 2025-02-12T14:14:34.524Z (8 months ago)
- Topics: api, mongodb, rust
- Language: Rust
- Size: 12.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD with MONGODB
## Endpoints
### GET /contacts/
- Return all contacts.### POST /contacts/
- Save a new contact.### GET /contacts/{id}/
- Return a specific contact### PUT /contacts/{id}/
- Update a specific contact### DELETE /contacts/{id}/
- Delete a specific contact