import { Module } from '@nestjs/common';
import { ApplicationWorkflowController } from './application-workflow.controller';
import { ApplicationWorkflowService } from './application-workflow.service';

@Module({ controllers: [ApplicationWorkflowController], providers: [ApplicationWorkflowService] })
export class ApplicationWorkflowModule {}
