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

12 lines
171 B
TypeScript
Raw Normal View History

2022-07-01 03:09:06 +00:00
import { Controller, Get } from '@nestjs/common';
@Controller()
export class AppController {
constructor() {}
2022-07-01 03:09:06 +00:00
@Get()
getHello(): string {
2022-07-25 04:38:48 +00:00
return 'hola';
2022-07-01 03:09:06 +00:00
}
}