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

5 statements  

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

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

2# EZPL - Handlers Module 

3# Project: ezpl 

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

5 

6""" 

7Handlers module for Ezpl logging framework. 

8 

9This module contains concrete implementations of logging handlers. 

10""" 

11 

12from __future__ import annotations 

13 

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

15# IMPORTS 

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

17# Local imports 

18from .console import EzPrinter 

19from .file import EzLogger 

20from .wizard import RichWizard 

21 

22# /////////////////////////////////////////////////////////////// 

23# PUBLIC API 

24# /////////////////////////////////////////////////////////////// 

25 

26__all__ = [ 

27 "EzPrinter", 

28 "EzLogger", 

29 "RichWizard", 

30]