Coverage for integrations / channels / gateway / __init__.py: 0.0%

2 statements  

« prev     ^ index     » next       coverage.py v7.14.0, created at 2026-05-12 04:49 +0000

1""" 

2Gateway Module 

3 

4Provides JSON-RPC 2.0 based gateway protocol for inter-service communication. 

5Designed for Docker container environments with volume-mounted persistence. 

6""" 

7 

8from .protocol import ( 

9 GatewayProtocol, 

10 GatewayConfig, 

11 GatewayStats, 

12 JsonRpcRequest, 

13 JsonRpcResponse, 

14 JsonRpcError, 

15 JsonRpcErrorCode, 

16 MethodInfo, 

17 NotificationTarget, 

18 get_gateway, 

19) 

20 

21__all__ = [ 

22 "GatewayProtocol", 

23 "GatewayConfig", 

24 "GatewayStats", 

25 "JsonRpcRequest", 

26 "JsonRpcResponse", 

27 "JsonRpcError", 

28 "JsonRpcErrorCode", 

29 "MethodInfo", 

30 "NotificationTarget", 

31 "get_gateway", 

32]