Homework
Make a dark_mart api where a user can interact with dark mart products.
- Your api will only have a product model.
- A product should have
- name
- price
- img_url
- A user should be able to
- get all products
- get a specific product
- add a product
- edit a product
- destroy a product
- Use at least one private method
- Use at least one validation