Merge pull request #2344 from tiangolo/dunder-main

 Add support for python -m gunicorn
This commit is contained in:
Randall Leeds 2020-05-29 11:17:15 -07:00 committed by GitHub
commit 4bed9e7b19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()