fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/jeeves/core/actions/__init__.py

13 lines
289 B
Python

from jeeves.core.actions.shell import ScriptAction
from jeeves.core.actions.docker import DockerBuildAction, DockerRunAction
__all__ = [
# Shell
ScriptAction,
# Docker
DockerBuildAction,
DockerRunAction,
]
PROVIDED_ACTIONS = {action.id: action for action in __all__}