summaryrefslogtreecommitdiff
path: root/server/continuedev/plugins/steps/clear_history.py
blob: 8f21518bada6154faad91e21354e912dde8d4db7 (plain)
1
2
3
4
5
6
7
8
9
10
from ...core.main import Step
from ...core.sdk import ContinueSDK


class ClearHistoryStep(Step):
    name: str = "Clear History"
    hide: bool = True

    async def run(self, sdk: ContinueSDK):
        await sdk.clear_history()