Coverage for src / ezqt_app / services / config / __init__.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-06 13:12 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-06 13:12 +0000
1# ///////////////////////////////////////////////////////////////
2# SERVICES.CONFIG - Configuration services
3# Project: ezqt_app
4# ///////////////////////////////////////////////////////////////
6"""Configuration services."""
8from __future__ import annotations
10# ///////////////////////////////////////////////////////////////
11# IMPORTS
12# ///////////////////////////////////////////////////////////////
13# Local imports
14from .config_service import ConfigService, get_config_service
16# ///////////////////////////////////////////////////////////////
17# PUBLIC API
18# ///////////////////////////////////////////////////////////////
19__all__ = [
20 "ConfigService",
21 "get_config_service",
22]