7 lines
249 B
Python
7 lines
249 B
Python
"""Application-side compute platform gateway module."""
|
|
|
|
from app.modules.compute_gateway.client import ComputeNodeClient
|
|
from app.modules.compute_gateway.sync import poll_compute_jobs_once
|
|
|
|
__all__ = ["ComputeNodeClient", "poll_compute_jobs_once"]
|