"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkFlowEngineImpl = void 0;
class WorkFlowEngineImpl {
constructor() { }
async run(workFlow, workContext) {
return workFlow.call(workContext);
}
}
exports.WorkFlowEngineImpl = WorkFlowEngineImpl;