ara/manage.py
David Moreau Simard a3ea6642a8
Make manage.py executable
Change-Id: I086cbcc543a6d1a865b69fde04cf4ef1fd0b5858
2019-05-21 16:56:59 -04:00

23 lines
801 B
Python
Executable File

#!/usr/bin/env python
# Copyright (c) 2019 Red Hat, Inc.
#
# This file is part of ARA Records Ansible.
#
# ARA is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ARA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ARA. If not, see <http://www.gnu.org/licenses/>.
from ara.server.__main__ import main
if __name__ == "__main__":
main()