mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-05 04:40:42 +00:00
13 lines
162 B
Python
13 lines
162 B
Python
#!/usr/bin/env python3
|
|
"""Main program."""
|
|
|
|
from ansibledoctor.Cli import AnsibleDoctor
|
|
|
|
|
|
def main():
|
|
AnsibleDoctor()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|