micro cambios

This commit is contained in:
xXpuma99Xx
2022-05-10 21:35:53 -05:00
parent a395dd2744
commit 640ba26a97
3 changed files with 11 additions and 14 deletions
+1 -5
View File
@@ -1,17 +1,13 @@
import { Controller, Get, Post, Put, Query } from '@nestjs/common';
import { EquipoService } from './equipo.service';
import { EquipoDto } from './dto/equipo.dto';
import {ApiTags} from '@nestjs/swagger'
import { ApiTags } from '@nestjs/swagger';
@Controller('equipo')
@ApiTags('equipo')
export class EquipoController {
constructor(private equipoService: EquipoService) {}
// Para cuando este listo lo de subir archivos... puede que hasta se cambie de controller
@Post()
cargaMasiva() {}
@Get()
get() {
return this.equipoService.findAll();