saas_app/src/packages/administrativo/services/t_pessoa/TPessoaIndexService.ts

10 lines
366 B
TypeScript

import { withClientErrorHandler } from '@/actions/withClientErrorHandler/withClientErrorHandler';
import { TPessoaIndexData } from '../../data/TPessoa/TPessoaIndexData';
async function executeTPessoaIndexService() {
const response = TPessoaIndexData();
return response;
}
export const TPessoaIndexService = withClientErrorHandler(executeTPessoaIndexService);