Rev 3563 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import { api } from '@shared/libs';export const startQuiz = async (url) => {try {return await api.post(url);} catch (error) {console.error(error);throw new Error('Error al iniciar el questionario, por favor intente más tarde');}};