7 lines
173 B
Python
7 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.")
|