mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2026-02-04 09:50:31 -07:00
Additional Changes to VPN Tunneling
This commit is contained in:
@@ -7,6 +7,15 @@
|
||||
|
||||
"""Service registration hooks for the Borealis Engine runtime."""
|
||||
|
||||
from . import API, WebSocket, WebUI
|
||||
from __future__ import annotations
|
||||
|
||||
import importlib
|
||||
from typing import Any
|
||||
|
||||
__all__ = ["API", "WebSocket", "WebUI"]
|
||||
|
||||
|
||||
def __getattr__(name: str) -> Any:
|
||||
if name in __all__:
|
||||
return importlib.import_module(f"{__name__}.{name}")
|
||||
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
||||
|
||||
Reference in New Issue
Block a user