10 lines
366 B
TypeScript
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);
|