mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 18:07:03 +10:00
16 lines
312 B
Python
16 lines
312 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass(frozen=True)
|
||
|
|
class DialogLauncher:
|
||
|
|
name: str
|
||
|
|
description: str
|
||
|
|
|
||
|
|
|
||
|
|
DEFAULT_DIALOGS = (
|
||
|
|
DialogLauncher('summary', 'Launch the Markdown summary view'),
|
||
|
|
DialogLauncher('parity_audit', 'Launch the parity audit view'),
|
||
|
|
)
|