added new table costo

This commit is contained in:
2026-02-23 14:37:55 -06:00
parent 8c69da9999
commit 59d3ec1490
9 changed files with 108 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Controller, Get, Post, Body, Patch, Param, Delete } from '@nestjs/common';
import { CostoService } from './costo.service';
@Controller('costo')
export class CostoController {
constructor(private readonly costoService: CostoService) {}
@Get()
findAll() {
return this.costoService.findAll();
}
}