Files
zk-data-agent/src/dialogLaunchers.py
T
Abdelrahman Abdallah 27aff5611b first commit
2026-04-01 21:51:49 +02:00

16 lines
327 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'),
)