summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-sanity-ansible-doc/ansible_collections/ns/col/plugins/lookup/a/b/lookup2.py
blob: 5cd2cf0f30fcd86a5975b9b52eaa9c273fc022ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

DOCUMENTATION = """
    name: lookup2
    author: Ansible Core Team
    short_description: hello test lookup
    description:
        - Hello test lookup.
    options: {}
"""

EXAMPLES = """
- minimal:
"""

RETURN = """
"""

from ansible.plugins.lookup import LookupBase


class LookupModule(LookupBase):

    def run(self, terms, variables=None, **kwargs):
        return []