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

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

2# CLI Commands Module 

3# Project: ezqt_widgets 

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

5 

6""" 

7CLI Commands module for EzQt-Widgets. 

8 

9This module contains all CLI command implementations. 

10""" 

11 

12from __future__ import annotations 

13 

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 

22 

23# /////////////////////////////////////////////////////////////// 

24# PUBLIC API 

25# /////////////////////////////////////////////////////////////// 

26 

27__all__ = [ 

28 "demo_group", 

29 "docs_command", 

30 "info_command", 

31 "version_command", 

32]