Coverage for src / lexigram / ai / relay / gateway / admin / __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-08-08 23:08 +0800

1"""Relay gateway admin surfaces. 

2 

3The contributor registers dashboards for channel health, route metrics, 

4active streams, and runtime policy, plus permissioned control actions. 

5""" 

6 

7from __future__ import annotations 

8 

9from lexigram.ai.relay.gateway.admin.contributor import ( 

10 RelayGatewayAdminContributor, 

11) 

12 

13__all__ = ["RelayGatewayAdminContributor"]