Coverage for src / ezplog / config / __init__.py: 100.00%
4 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:27 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:27 +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]