* feat: wip refactor folder structure * Fix * fix position --------- Co-authored-by: Charles Bochet <charles@twenty.com>
14 lines
462 B
TypeScript
14 lines
462 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { TypeORMModule } from 'src/database/typeorm/typeorm.module';
|
|
import { DataSourceModule } from 'src/engine-metadata/data-source/data-source.module';
|
|
|
|
import { WorkspaceDataSourceService } from './workspace-datasource.service';
|
|
|
|
@Module({
|
|
imports: [DataSourceModule, TypeORMModule],
|
|
exports: [WorkspaceDataSourceService],
|
|
providers: [WorkspaceDataSourceService],
|
|
})
|
|
export class WorkspaceDataSourceModule {}
|