Coverage for src / ezpl / cli / __init__.py: 100.00%
3 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 - CLI Module
3# Project: ezpl
4# ///////////////////////////////////////////////////////////////
6"""
7CLI module for Ezpl logging framework.
9This module provides the command-line interface for managing Ezpl
10configuration, viewing logs, and performing various operations.
11"""
13from __future__ import annotations
15# ///////////////////////////////////////////////////////////////
16# IMPORTS
17# ///////////////////////////////////////////////////////////////
18# Local imports
19from .main import cli
21# ///////////////////////////////////////////////////////////////
22# PUBLIC API
23# ///////////////////////////////////////////////////////////////
25__all__ = [
26 # CLI public API
27 "cli",
28]