Files
anime_downloader/nest_api/anime-api/src/app.controller.ts
2025-12-25 19:50:27 +09:00

13 lines
274 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
}