Initial project import

This commit is contained in:
2026-08-14 09:40:51 +03:00
parent 00040e5ce4
commit d7099bf80d
146 changed files with 30509 additions and 1055 deletions
+14
View File
@@ -0,0 +1,14 @@
"""Stable contracts shared by the universal dispatcher and typed handlers."""
from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class WriteHandler:
"""A supported public write surface, not an SQL implementation detail."""
key: str
public_target_kind: str
operation: str | None = None