9 lines
168 B
Python
9 lines
168 B
Python
|
|
"""Simple stateless code executor."""
|
||
|
|
|
||
|
|
from pod_executor.simple.executor import CodeExecutor, ExecutionResult
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"CodeExecutor",
|
||
|
|
"ExecutionResult",
|
||
|
|
]
|