/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
galaxy/webui/services/__init__.py
19 строк
493 B
vyokky
refactor server / websocket
11 ноя 2025, 09:04
11 ноя 2025, 09:04
9381fd7
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ Services for Galaxy Web UI. This package contains business logic services that encapsulate operations and interact with the Galaxy framework. """ from galaxy.webui.services.device_service import DeviceService from galaxy.webui.services.galaxy_service import GalaxyService from galaxy.webui.services.config_service import ConfigService __all__ = [ "DeviceService", "GalaxyService", "ConfigService", ]