import http from './http'; export const createReview = (data) => http.post('/reviews', data); export const listReviewsByProduct = (productId) => http.get(`/reviews/product/${productId}`);