rices/src/app.controller.ts
2024-12-26 00:58:36 +01:00

7 lines
198 B
TypeScript

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