import { Controller, Get } from '@nestjs/common';
import { GetCurrentMotdWorkflow } from './workflows/get-current-motd/get-current-motd.workflow';

@Controller('motd')
export class MotdController {
  constructor(private getCurrentMotdWorkflow: GetCurrentMotdWorkflow) {}

  @Get()
  async getCurrentMotd() {
    return this.getCurrentMotdWorkflow.get();
  }
}
