katoikia-app/servicio-notificaciones/src/app.controller.ts

12 lines
171 B
TypeScript

import { Controller, Get } from '@nestjs/common';
@Controller()
export class AppController {
constructor() {}
@Get()
getHello(): string {
return 'hola';
}
}