mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
12 lines
157 B
Python
12 lines
157 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
import json
|
||
|
|
||
|
|
||
|
def main():
|
||
|
print(json.dumps(dict(changed=False, source='legacy_library_dir')))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|