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/gather_facts-errors/library/success1.py

13 lines
205 B
Python

from __future__ import annotations
from ansible.module_utils.basic import AnsibleModule
def main() -> None:
module = AnsibleModule({})
module.exit_json()
if __name__ == '__main__':
main()