mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-27 03:34:55 +00:00
13 lines
398 B
TypeScript
13 lines
398 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
import { HttpModule } from '@nestjs/axios'; // <-- Import this!
|
|
import { WeatherController } from './controllers';
|
|
import { WeatherService } from './services';
|
|
|
|
@Module({
|
|
imports: [ConfigModule, HttpModule],
|
|
controllers: [WeatherController],
|
|
providers: [WeatherService],
|
|
})
|
|
export class WeatherModule {}
|