Proyectos de Subversion LeadersLinked - SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3746 stevensc 1
import { api } from '@shared/libs';
2
 
3
export const addComment = (url, comment) => {
4
  return api.post(url, comment);
5
};
6
 
7
export const deleteComment = (url) => {
8
  return api.post(url);
9
};