mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
11 lines
279 B
Python
Executable File
11 lines
279 B
Python
Executable File
#!/venv/awx/bin/python
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'awx','console_scripts','awx-manage'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
__requires__ = 'awx'
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(
|
|
load_entry_point('awx', 'console_scripts', 'awx-manage')()
|
|
)
|