Coverage for /home/admin/Documents/AI/applications/lexigram-dev/lexigram/experimental/ai/lexigram-ai-governance/src/lexigram/ai/governance/relay_channels/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-25 07:19 +0800

1"""Durable relay channel storage. 

2 

3SQL-backed CRUD for relay channels behind the 

4``RelayChannelStoreProtocol`` contract, with revision compare-and-set 

5so stale writers never overwrite newer state. Statically configured 

6channels remain the default; binding this store lets the gateway 

7reconcile its registry from durable rows at boot. 

8 

9Exports: 

10 - ``SqlRelayChannelStore``: SQL-backed channel CRUD store. 

11""" 

12 

13from lexigram.ai.governance.relay_channels.persistence import ( 

14 SqlRelayChannelStore, 

15) 

16 

17__all__ = ["SqlRelayChannelStore"]