Files
pcpuma_unam_api/src/carrera-programa/carrera-programa.controller.ts
T
2022-04-17 20:56:02 -05:00

20 lines
384 B
TypeScript

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() {}
}