carrera progrma listo

This commit is contained in:
xXpuma99Xx
2022-04-17 20:56:02 -05:00
parent d0c8d08ce5
commit d6e97e7f98
7 changed files with 19 additions and 9 deletions
@@ -1,9 +1,19 @@
import { Controller, Get, Post, Put } from '@nestjs/common';
import { Controller, Delete, Get, Post, Put } from '@nestjs/common';
import { CarreraProgramaService } from './carrera-programa.service';
@Controller('carrera-programa')
export class CarreraProgramaController {
constructor(private carreraProgramaService: CarreraProgramaService) {}
@Post()
create() {}
@Delete()
delete() {}
@Get()
get() {}
@Put()
update() {}
}