mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-15 10:25:23 +00:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { AqiSpaceDailyPollutantStatsEntity } from './entities/aqi.entity';
|
|
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [TypeOrmModule.forFeature([AqiSpaceDailyPollutantStatsEntity])],
|
|
})
|
|
export class AqiRepositoryModule {}
|