This commit is contained in:
xXpuma99Xx
2022-04-04 20:53:32 -05:00
parent 3c8dd17089
commit adf1cafc24
40 changed files with 227 additions and 41 deletions
+4 -1
View File
@@ -1,4 +1,7 @@
import { Controller } from '@nestjs/common';
import { ProgramaService } from './programa.service';
@Controller('programa')
export class ProgramaController {}
export class ProgramaController {
constructor(private programaService: ProgramaService) {}
}