add carrera

This commit is contained in:
2025-09-26 17:43:19 -06:00
parent 531ca5bdef
commit 7370e25e89
10 changed files with 79 additions and 24 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Controller, Get } from '@nestjs/common';
import { CarreraService } from './carrera.service';
@Controller('carrera')
export class CarreraController {
constructor(private readonly carreraService: CarreraService) {}
@Get()
findAll() {
return this.carreraService.findAll();
}
}