2024-08-27 15:06:39 +00:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
|
|
|
|
|
import { GraphqlQueryRunnerService } from 'src/engine/api/graphql/graphql-query-runner/graphql-query-runner.service';
|
2024-09-18 16:43:45 +00:00
|
|
|
import { WorkspaceQueryHookModule } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.module';
|
|
|
|
|
import { WorkspaceQueryRunnerModule } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-runner.module';
|
2024-08-27 15:06:39 +00:00
|
|
|
|
|
|
|
|
@Module({
|
2024-09-18 16:43:45 +00:00
|
|
|
imports: [WorkspaceQueryHookModule, WorkspaceQueryRunnerModule],
|
2024-08-27 15:06:39 +00:00
|
|
|
providers: [GraphqlQueryRunnerService],
|
|
|
|
|
exports: [GraphqlQueryRunnerService],
|
|
|
|
|
})
|
|
|
|
|
export class GraphqlQueryRunnerModule {}
|