Files
Foxel/domain/config/__init__.py
2026-02-09 13:19:28 +08:00

11 lines
221 B
Python

from .service import ConfigService, VERSION
from .types import ConfigItem, LatestVersionInfo, SystemStatus
__all__ = [
"ConfigService",
"VERSION",
"ConfigItem",
"LatestVersionInfo",
"SystemStatus",
]