- Refactor connected account module - Move blocklist into it's own module - Move contact-creation-manager into it's own module --------- Co-authored-by: Charles Bochet <charles@twenty.com>
11 lines
436 B
TypeScript
11 lines
436 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { ContactCreationManagerModule } from 'src/modules/contact-creation-manager/contact-creation-manager.module';
|
|
import { CreateCompanyAndContactJob } from 'src/modules/contact-creation-manager/jobs/create-company-and-contact.job';
|
|
|
|
@Module({
|
|
imports: [ContactCreationManagerModule],
|
|
providers: [CreateCompanyAndContactJob],
|
|
})
|
|
export class AutoCompaniesAndContactsCreationJobModule {}
|