Coverage for src/nats_contrib/micro/__init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-06 11:09 +0100

1from .api import Endpoint, Group, Service, add_service 

2from .client import Client, ServiceError 

3from .context import Context, run 

4from .internal import Handler 

5from .models import EndpointInfo, EndpointStats, PingInfo, ServiceInfo, ServiceStats 

6from .request import Request 

7 

8__all__ = [ 

9 "add_service", 

10 "Context", 

11 "Endpoint", 

12 "EndpointInfo", 

13 "EndpointStats", 

14 "Client", 

15 "Group", 

16 "Handler", 

17 "PingInfo", 

18 "Request", 

19 "Service", 

20 "ServiceInfo", 

21 "ServiceError", 

22 "ServiceStats", 

23 "run", 

24]