mirror of
https://github.com/twentyhq/twenty
synced 2026-04-23 06:27:21 +00:00
10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
|
||
|
|
import { GraphqlQueryRunnerService } from 'src/engine/api/graphql/graphql-query-runner/graphql-query-runner.service';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
providers: [GraphqlQueryRunnerService],
|
||
|
|
exports: [GraphqlQueryRunnerService],
|
||
|
|
})
|
||
|
|
export class GraphqlQueryRunnerModule {}
|