Coverage for src / ezqt_app / services / runtime / __init__.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-26 07:07 +0000

1# /////////////////////////////////////////////////////////////// 

2# SERVICES.RUNTIME - Runtime state services 

3# Project: ezqt_app 

4# /////////////////////////////////////////////////////////////// 

5 

6"""Runtime state services.""" 

7 

8from __future__ import annotations 

9 

10# /////////////////////////////////////////////////////////////// 

11# IMPORTS 

12# /////////////////////////////////////////////////////////////// 

13# Local imports 

14from .runtime_service import RuntimeStateService, get_runtime_state_service 

15 

16# /////////////////////////////////////////////////////////////// 

17# PUBLIC API 

18# /////////////////////////////////////////////////////////////// 

19__all__ = [ 

20 "RuntimeStateService", 

21 "get_runtime_state_service", 

22]