You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/protomatter/lookup_plugins/synthetic_plugin_info.py

13 lines
359 B
Python

from __future__ import annotations
from ansible.module_utils._internal import _messages
from ansible.plugins.lookup import LookupBase
class LookupModule(LookupBase):
def run(self, terms, variables=None, **kwargs):
return [_messages.PluginInfo(
resolved_name='ns.col.module',
type=_messages.PluginType.MODULE,
)]