mirror of
https://github.com/ultraworkers/claw-code.git
synced 2026-04-13 12:15:44 +08: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'),
|
|
)
|