mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-08-28 05:15:00 +00:00
16 lines
272 B
Python
16 lines
272 B
Python
"""Runtime support service namespace.
|
|
|
|
Import concrete submodules:
|
|
|
|
from openspace.services.runtime_support import background, settings
|
|
"""
|
|
|
|
__all__ = [
|
|
"background",
|
|
"budget",
|
|
"cost",
|
|
"low_latency",
|
|
"plan_mode",
|
|
"settings",
|
|
"warm_core",
|
|
]
|