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 {
return "hola";
2022-07-01 03:09:06 +00:00
}
}