This repository has been archived on 2026-02-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
config-skeleton/config_skeleton/__init__.py

11 lines
282 B
Python

"""Main module for the app."""
from .exceptions import InvalidKeyError, InvalidValueError, MissingKeyError
from .skeleton import merge, merge_with_skeleton
__all__ = [
"InvalidKeyError",
"InvalidValueError",
"MissingKeyError",
"merge",
"merge_with_skeleton",
]