| import { Controller, Get } from "@nestjs/common"; | |
| import { TranslationService } from "./translation.service"; | |
| ("translation") | |
| export class TranslationController { | |
| constructor(private readonly translationService: TranslationService) {} | |
| ("/languages") | |
| async languages() { | |
| return this.translationService.fetchLanguages(); | |
| } | |
| } | |