Files
TI-FCYT-URBAN/bot-wsp/src/scheduling/scheduling.controller.ts
T
Valentin Romero 25d4ba6cc0 add bot wsp
2026-06-30 22:04:56 -03:00

8 lines
240 B
TypeScript

import { Controller } from '@nestjs/common';
import { SchedulingService } from './scheduling.service';
@Controller('scheduling')
export class SchedulingController {
constructor(private readonly schedulingService: SchedulingService) {}
}