mirror of
https://github.com/instructkr/claude-code.git
synced 2026-05-22 13:46:44 +00:00
feat: Python porting workspace with reference data and parity audit
This commit is contained in:
15
src/dialogLaunchers.py
Normal file
15
src/dialogLaunchers.py
Normal file
@@ -0,0 +1,15 @@
|
||||
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'),
|
||||
)
|
||||
Reference in New Issue
Block a user