generated from edgexfoundry-holding/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
__init__.py
21 lines (17 loc) · 947 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (C) 2024 IOTech Ltd
# SPDX-License-Identifier: Apache-2.0
"""
The App Functions SDK Python package.
This package provides the core functionality for the App Functions SDK in Python. It includes
modules for clients, configuration, contracts, interfaces, functions, messaging, and registry.
Modules:
bootstrap: Handles the bootstrapping of the app service.
configuration: Handles the configuration of the App Functions SDK.
contracts: Defines the data contracts used by the App Functions SDK.
interfaces: Defines the interfaces used by the App Functions SDK.
functions: Contains the pipeline functions provided by the App Functions SDK.
messaging: Handles messaging functionality for the App Functions SDK.
registry: Provides service registry functionality for the App Functions SDK.
"""
__all__ = ["bootstrap", "configuration", "contracts", "interfaces", "functions", "messaging",
"registry"]