15 lines
604 B
TypeScript
15 lines
604 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { AuthModule } from '../auth/auth.module';
|
|
import { ApiCallLog } from '../third-party/entities/api-call-log.entity';
|
|
import { ThirdPartyModule } from '../third-party/third-party.module';
|
|
import { OrderLogsController } from './order-logs.controller';
|
|
import { OrderLogsService } from './order-logs.service';
|
|
|
|
@Module({
|
|
imports: [AuthModule, ThirdPartyModule, TypeOrmModule.forFeature([ApiCallLog])],
|
|
controllers: [OrderLogsController],
|
|
providers: [OrderLogsService],
|
|
})
|
|
export class OrderLogsModule {}
|