mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 21:50:57 +00:00
14 lines
408 B
TypeScript
14 lines
408 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { FraudService } from './fraud.service';
|
|
import { FraudController } from './fraud.controller';
|
|
|
|
@Module({
|
|
imports: [HttpModule, TypeOrmModule],
|
|
providers: [FraudService],
|
|
controllers: [FraudController],
|
|
exports: [FraudService],
|
|
})
|
|
export class FraudModule {}
|