Coverage for src/su6/__init__.py: 100%
6 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-10-09 14:16 +0200
« prev ^ index » next coverage.py v7.2.7, created at 2023-10-09 14:16 +0200
1"""
2This file exposes 'app' to the module.
3"""
5# SPDX-FileCopyrightText: 2023-present Robin van der Noord <robinvandernoord@gmail.com>
6#
7# SPDX-License-Identifier: MIT
9from rich import print
11from .cli import app
12from .core import GREEN_CIRCLE, RED_CIRCLE, print_json, state
14# for plugins:
15from .plugins import register as register_plugin
16from .plugins import run_tool
18__all__ = ["app", "print", "GREEN_CIRCLE", "RED_CIRCLE", "print_json", "state", "register_plugin", "run_tool"]