14 lines
227 B
Python
14 lines
227 B
Python
"""
|
|
MPR Jobs Module
|
|
|
|
Provides executor abstraction for job dispatch (local, Lambda, GCP).
|
|
"""
|
|
|
|
from .executor import Executor, LocalExecutor, get_executor
|
|
|
|
__all__ = [
|
|
"Executor",
|
|
"LocalExecutor",
|
|
"get_executor",
|
|
]
|