Coverage for src / ezplog / handlers / __init__.py: 100.00%
5 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 - Handlers Module
3# Project: ezpl
4# ///////////////////////////////////////////////////////////////
6"""
7Handlers module for Ezpl logging framework.
9This module contains concrete implementations of logging handlers.
10"""
12from __future__ import annotations
14# ///////////////////////////////////////////////////////////////
15# IMPORTS
16# ///////////////////////////////////////////////////////////////
17# Local imports
18from .console import EzPrinter
19from .file import EzLogger
20from .wizard import RichWizard
22# ///////////////////////////////////////////////////////////////
23# PUBLIC API
24# ///////////////////////////////////////////////////////////////
26__all__ = [
27 "EzPrinter",
28 "EzLogger",
29 "RichWizard",
30]