File size: 360 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { HttpModule } from "@nestjs/axios";
import { Module } from "@nestjs/common";
import { TranslationController } from "./translation.controller";
import { TranslationService } from "./translation.service";
@Module({
imports: [HttpModule],
controllers: [TranslationController],
providers: [TranslationService],
})
export class TranslationModule {}
|