| 28 | } |
| 29 | |
| 30 | StagehandPtr StagehandDatabase::createStagehand(String const& stagehandType, Json const& extraConfig) const { |
| 31 | auto finalConfig = jsonMerge(m_stagehandTypes.get(stagehandType), extraConfig); |
| 32 | return make_shared<Stagehand>(finalConfig); |
| 33 | } |
| 34 | |
| 35 | } |
no test coverage detected