Configure for shutdown of session after execution

j 2024-03-17 23:25:02 -04:00
parent 98830cb0ff
commit 76e9014173
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ async function startApplication() {
// Initialize and start your workflow
const workflowOrchestrator = new WorkflowOrchestrator();
await workflowOrchestrator.executeWorkflow();
await rDramaSessionManager.shutdown()
}
startApplication()