import { Auteur, Review } from './structures' export const addReviewFromRequest = (req,res) => { const author = new Auteur(req.body.age,req.body.sexe); const review = new Review(author, req.body.note, req.body.source) //TODO: AJouter l'avis a la bdd }