From dbaca05ac81333c77c94c2ea1ae6b8a7fdd2b5fb Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 1 Apr 2018 11:29:52 +0100 Subject: [PATCH] issue #106: Runner module docstring --- ansible_mitogen/runner.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ansible_mitogen/runner.py b/ansible_mitogen/runner.py index 2d92626e..3d55d806 100644 --- a/ansible_mitogen/runner.py +++ b/ansible_mitogen/runner.py @@ -26,6 +26,15 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. + +""" +These classes implement execution for each style of Ansible module. They are +instantiated in the target context by way of helpers.py::run_module(). + +Each class in here has a corresponding Planner class in planners.py that knows +how to build arguments for it, preseed related data, etc. +""" + from __future__ import absolute_import import json import os