Coverage for src/clauth/commands/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-09-28 14:45 -0400
« prev ^ index » next coverage.py v7.10.7, created at 2025-09-28 14:45 -0400
1# Copyright (c) 2025 Mahmood Khordoo
2#
3# This software is licensed under the MIT License.
4# See the LICENSE file in the root directory for details.
6"""
7CLAUTH Commands Package.
9This package contains all CLAUTH CLI commands organized as separate modules
10for better maintainability and modularity.
11"""
13from .models import model_app
14from .delete import delete
15from .config import config_app
16from .init import init_command
18__all__ = ["model_app", "delete", "config_app", "init_command"]