summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_defaults/collections/ansible_collections/testns/othercoll/plugins/action/other_echoaction.py
blob: f7777b8ae2bdd347ef86cebd48c8f5b5939d603c (plain)
1
2
3
4
5
6
7
8
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

from ansible_collections.testns.testcoll.plugins.action.echoaction import ActionModule as BaseAM


class ActionModule(BaseAM):
    pass