Coverage for src/typedconfig/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-13 18:49 +0200
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-13 18:49 +0200
1"""
2Exposes TypedConfig and load_into for this library.
3"""
5# SPDX-FileCopyrightText: 2023-present Robin van der Noord <robinvandernoord@gmail.com>
6#
7# SPDX-License-Identifier: MIT
8from .cls import TypedConfig # noqa: F401 imported for library reasons
9from .core import load_into # noqa: F401 imported for library reasons
10from .singleton import ( # noqa: F401 imported for library reasons
11 Singleton,
12 SingletonMeta,
13)