Proyectos de Subversion LeadersLinked - SPA

Rev

Autoría | Ultima modificación | Ver Log |

import { api } from '@shared/libs';

export const addComment = (url, comment) => {
  return api.post(url, comment);
};

export const deleteComment = (url) => {
  return api.post(url);
};