Coverage for src / ezpl / cli / commands / __init__.py: 100.00%
6 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 Commands Module
3# Project: ezpl
4# ///////////////////////////////////////////////////////////////
6"""
7CLI Commands module for Ezpl logging framework.
9This module contains all CLI command implementations.
10"""
12from __future__ import annotations
14# ///////////////////////////////////////////////////////////////
15# IMPORTS
16# ///////////////////////////////////////////////////////////////
17# Local imports
18from .config import config_group
19from .info import info_command
20from .logs import logs_group
21from .version import version_command
23# ///////////////////////////////////////////////////////////////
24# PUBLIC API
25# ///////////////////////////////////////////////////////////////
27__all__ = [
28 # CLI command groups
29 "logs_group",
30 "config_group",
31 "version_command",
32 "info_command",
33]