Coverage for src / eclipse / care / utils / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-24 09:38 +0100
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-24 09:38 +0100
1# Copyright (c) 2025 The Eclipse Foundation
2#
3# This program and the accompanying materials are made available under the
4# terms of the Eclipse Public License 2.0 which is available at
5# http://www.eclipse.org/legal/epl-2.0.
6#
7# SPDX-License-Identifier: EPL-2.0
8#
9# Contributors:
10# asgomes - Initial implementation
12__all__ = [
13 'print_error',
14 'print_warning',
15 '__version__'
16]
17__version__ = "0.0.2"
19from .cli_utils import print_error, print_warning