Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
353 Bytes
import { Controller, Get } from "@nestjs/common";
import { TranslationService } from "./translation.service";
@Controller("translation")
export class TranslationController {
constructor(private readonly translationService: TranslationService) {}
@Get("/languages")
async languages() {
return this.translationService.fetchLanguages();
}
}