Add ADSB Exchange

This commit is contained in:
2024-09-10 21:02:00 -06:00
parent 76897bf48c
commit 7fae07b3c3
7 changed files with 414 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import { Module } from '@nestjs/common';
import { AdsbExchangeService } from './adsb-exchange.service';
import { AdsbExchangeController } from './adsb-exchange.controller';
import { CacheModule } from '@nestjs/cache-manager';
@Module({
imports: [CacheModule.register()],
providers: [AdsbExchangeService],
controllers: [AdsbExchangeController],
})
export class AdsbExchangeModule {}