Coverage for src / ezpl / config / __init__.py: 100.00%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-13 19:35 +0000

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

2# EZPL - Config Module 

3# Project: ezpl 

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

5 

6""" 

7Configuration module for Ezpl logging framework. 

8 

9This module handles all configuration management. 

10""" 

11 

12from __future__ import annotations 

13 

14# /////////////////////////////////////////////////////////////// 

15# IMPORTS 

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

17# Local imports 

18from .defaults import DefaultConfiguration 

19from .manager import ConfigurationManager 

20 

21# /////////////////////////////////////////////////////////////// 

22# PUBLIC API 

23# /////////////////////////////////////////////////////////////// 

24 

25__all__ = [ 

26 # Configuration public API 

27 "ConfigurationManager", 

28 "DefaultConfiguration", 

29]