Coverage for src / ezqt_app / services / config / __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.CONFIG - Configuration services 

3# Project: ezqt_app 

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

5 

6"""Configuration services.""" 

7 

8from __future__ import annotations 

9 

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

11# IMPORTS 

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

13# Local imports 

14from .config_service import ConfigService, get_config_service 

15 

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

17# PUBLIC API 

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

19__all__ = [ 

20 "ConfigService", 

21 "get_config_service", 

22]