Add support for python -m gunicorn

This commit is contained in:
Sebastián Ramírez 2020-05-29 18:44:50 +02:00
parent 6aab4decde
commit 17e70dac53

7
gunicorn/__main__.py Normal file
View File

@ -0,0 +1,7 @@
# -*- coding: utf-8 -
#
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
from gunicorn.app.wsgiapp import run
run()