File size: 372 Bytes
f07dbc4
eacfb4b
f07dbc4
 
eacfb4b
f07dbc4
 
eacfb4b
f07dbc4
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Module } from '@nestjs/common';
import { HttpModule } from '@nestjs/axios';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { DirectModule } from './direct/direct.module';

@Module({
  imports: [HttpModule, DirectModule],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}