pcpuma_unam_api/src/prestamo/prestamo.controller.ts

8 lines
219 B
TypeScript
Raw Normal View History

2022-03-30 04:03:19 +00:00
import { Controller } from '@nestjs/common';
2022-04-05 01:53:32 +00:00
import { PrestamoService } from './prestamo.service';
2022-03-30 04:03:19 +00:00
@Controller('prestamo')
2022-04-05 01:53:32 +00:00
export class PrestamoController {
constructor(private prestamoService: PrestamoService) {}
}