8 lines
240 B
TypeScript
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) {}
|
|
}
|