* feat: wip server folder structure * fix: merge * fix: wrong merge * fix: remove unused file * fix: comment * fix: lint * fix: merge * fix: remove console.log * fix: metadata graphql arguments broken
14 lines
470 B
TypeScript
14 lines
470 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { TypeORMModule } from 'src/database/typeorm/typeorm.module';
|
|
import { DataSourceModule } from 'src/engine/metadata-modules/data-source/data-source.module';
|
|
|
|
import { WorkspaceDataSourceService } from './workspace-datasource.service';
|
|
|
|
@Module({
|
|
imports: [DataSourceModule, TypeORMModule],
|
|
exports: [WorkspaceDataSourceService],
|
|
providers: [WorkspaceDataSourceService],
|
|
})
|
|
export class WorkspaceDataSourceModule {}
|