6 lines
173 B
Python
6 lines
173 B
Python
from __future__ import annotations
|
|
|
|
|
|
class ScenarioRunner:
|
|
async def run(self, scenario_id):
|
|
raise NotImplementedError("Scenario execution is a V2 hook in V1.")
|