An open API service indexing awesome lists of open source software.

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

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