feat: implement third-party order sync
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user