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
« 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# ///////////////////////////////////////////////////////////////
6"""
7Configuration module for Ezpl logging framework.
9This module handles all configuration management.
10"""
12from __future__ import annotations
14# ///////////////////////////////////////////////////////////////
15# IMPORTS
16# ///////////////////////////////////////////////////////////////
17# Local imports
18from .defaults import DefaultConfiguration
19from .manager import ConfigurationManager
21# ///////////////////////////////////////////////////////////////
22# PUBLIC API
23# ///////////////////////////////////////////////////////////////
25__all__ = [
26 # Configuration public API
27 "ConfigurationManager",
28 "DefaultConfiguration",
29]