14 lines
379 B
Python
14 lines
379 B
Python
import pkg_resources
|
|
|
|
from .interface import run, run_async # noqa
|
|
from .exceptions import AnsibleRunnerException, ConfigurationError, CallbackError # noqa
|
|
from .runner_config import RunnerConfig # noqa
|
|
from .runner import Runner # noqa
|
|
|
|
plugins = {
|
|
entry_point.name: entry_point.load()
|
|
for entry_point
|
|
in pkg_resources.iter_entry_points('ansible_runner.plugins')
|
|
}
|
|
|