Files
iddaai-be/src/app.controller.ts
T
2026-04-16 17:21:48 +03:00

13 lines
274 B
TypeScript
Executable File

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();
}
}