11 lines
416 B
TypeScript
11 lines
416 B
TypeScript
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);
|