File size: 330 Bytes
57a889c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Module } from '@nestjs/common';
import { WeatherController } from './weather.controller';
import { WeatherService } from './weather.service';

/** Weather domain (pilot leaf module). Registered in AppModule. */
@Module({
  controllers: [WeatherController],
  providers: [WeatherService],
})
export class WeatherModule {}