Files
api-AT/src/carrera/carrera.controller.ts
T

13 lines
297 B
TypeScript
Raw Normal View History

2025-09-26 17:43:19 -06:00
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();
}
}