Files
twenty_crm/packages/twenty-server/src/modules/view/view.module.ts
Paul Rastoin 5ba3c09b14 [CHORE] Prepare twenty-serverfor twenty-shared multi barrel refactor (#11022)
# Introduction
While running https://github.com/twentyhq/twenty/pull/10960 scripts
discovers few issues:
- Invalid named folder `pre-hooks.ts`
- Mock consuming outbound imported module resulting in consumed before
initialization
2025-03-19 11:26:42 +00:00

12 lines
337 B
TypeScript

import { Module } from '@nestjs/common';
import { ViewService } from 'src/modules/view/services/view.service';
import { ViewDeleteOnePreQueryHook } from './pre-hooks/view-delete-one.pre-query.hook';
@Module({
imports: [],
providers: [ViewService, ViewDeleteOnePreQueryHook],
exports: [ViewService],
})
export class ViewModule {}