mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 22:01:59 -06:00
Scaffold Engine application interfaces
This commit is contained in:
19
Data/Engine/interfaces/ws/job_management/events.py
Normal file
19
Data/Engine/interfaces/ws/job_management/events.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""Job management WebSocket event placeholders for the Engine."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
||||
|
||||
def register(socketio: Any) -> None:
|
||||
"""Register job management namespaces on *socketio*.
|
||||
|
||||
Concrete handlers will be migrated in later phases.
|
||||
"""
|
||||
|
||||
if socketio is None: # pragma: no cover - guard
|
||||
return
|
||||
return
|
||||
|
||||
|
||||
__all__ = ["register"]
|
||||
Reference in New Issue
Block a user