Coverage for src / ezqt_widgets / cli / commands / __init__.py: 0.00%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-01 22:46 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-01 22:46 +0000
1# ///////////////////////////////////////////////////////////////
2# CLI Commands Module
3# Project: ezqt_widgets
4# ///////////////////////////////////////////////////////////////
6"""
7CLI Commands module for EzQt-Widgets.
9This module contains all CLI command implementations.
10"""
12from __future__ import annotations
14# ///////////////////////////////////////////////////////////////
15# IMPORTS
16# ///////////////////////////////////////////////////////////////
17# Local imports
18from ._demo import demo_group
19from ._docs import docs_command
20from ._info import info_command
21from ._version import version_command
23# ///////////////////////////////////////////////////////////////
24# PUBLIC API
25# ///////////////////////////////////////////////////////////////
27__all__ = [
28 "demo_group",
29 "docs_command",
30 "info_command",
31 "version_command",
32]