/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
aip/endpoints/__init__.py
20 строк
499 B
vyokky
aip first implemetation
04 ноя 2025, 10:10
04 ноя 2025, 10:10
6f5b713
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ AIP Endpoints Provides endpoint implementations for Device Server, Device Client, and Constellation Client. """ from .base import AIPEndpoint from .client_endpoint import DeviceClientEndpoint from .constellation_endpoint import ConstellationEndpoint from .server_endpoint import DeviceServerEndpoint __all__ = [ "AIPEndpoint", "DeviceServerEndpoint", "DeviceClientEndpoint", "ConstellationEndpoint", ]