teableio/teable

View on GitHub
apps/nestjs-backend/src/features/aggregation/open-api/aggregation-open-api.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Module } from '@nestjs/common';
import { AggregationModule } from '../aggregation.module';
import { AggregationOpenApiController } from './aggregation-open-api.controller';
import { AggregationOpenApiService } from './aggregation-open-api.service';

@Module({
  controllers: [AggregationOpenApiController],
  imports: [AggregationModule],
  providers: [AggregationOpenApiService],
  exports: [AggregationOpenApiService],
})
export class AggregationOpenApiModule {}