rices/src/app.controller.ts
2025-03-02 13:04:36 +01:00

7 lines
199 B
TypeScript

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