import { withClientErrorHandler } from '@/shared/actions/withClientErrorHandler/withClientErrorHandler'; import { GGramaticaIndexData } from '../../data/GGramatica/GGramaticaIndexData'; export default async function executeGGramaticaIndexService() { const response = await GGramaticaIndexData(); return response; } export const GGramaticaIndexService = withClientErrorHandler(executeGGramaticaIndexService);