2026-01-15 14:01:56 -06:00
|
|
|
import { Controller, Get } from '@nestjs/common';
|
2025-09-10 17:32:00 -06:00
|
|
|
import { ServicioService } from './servicio.service';
|
|
|
|
|
|
|
|
|
|
@Controller('servicio')
|
|
|
|
|
export class ServicioController {
|
|
|
|
|
constructor(private readonly servicioService: ServicioService) {}
|
|
|
|
|
@Get()
|
|
|
|
|
findAll() {
|
|
|
|
|
return this.servicioService.findAll();
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-12 20:41:51 -06:00
|
|
|
//IO
|