listo programa

This commit is contained in:
xXpuma99Xx
2022-04-17 23:05:18 -05:00
parent cbd0c4fe3c
commit a1b609f107
7 changed files with 16 additions and 13 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
import { Controller } from '@nestjs/common';
import { Controller, Get } from '@nestjs/common';
import { ProgramaService } from './programa.service';
@Controller('programa')
export class ProgramaController {
constructor(private programaService: ProgramaService) {}
@Get()
get() {}
}