Skip to content

Commit 3797194

Browse files
author
Andrei Neagu
committed
exposed more
1 parent 00d010e commit 3797194

File tree

1 file changed

+4
-2
lines changed
  • services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/services/generic_scheduler

1 file changed

+4
-2
lines changed

services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/services/generic_scheduler/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from ._core import cancel_operation, start_operation
2-
from ._deferred_runner import get_step_group_proxy
2+
from ._deferred_runner import get_step_group_proxy, get_step_store_proxy
33
from ._lifespan import get_generic_scheduler_lifespans
44
from ._models import (
55
OperationName,
@@ -14,13 +14,14 @@
1414
ParallelStepGroup,
1515
SingleStepGroup,
1616
)
17-
from ._store import StepGroupProxy
17+
from ._store import StepGroupProxy, StepStoreProxy
1818

1919
__all__: tuple[str, ...] = (
2020
"BaseStep",
2121
"cancel_operation",
2222
"get_generic_scheduler_lifespans",
2323
"get_step_group_proxy",
24+
"get_step_store_proxy",
2425
"Operation",
2526
"OperationName",
2627
"OperationRegistry",
@@ -31,4 +32,5 @@
3132
"SingleStepGroup",
3233
"start_operation",
3334
"StepGroupProxy",
35+
"StepStoreProxy",
3436
)

0 commit comments

Comments
 (0)