From 17e70dac536f182f8aa00f5e22bfed5985661081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 29 May 2020 18:44:50 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20support=20for=20python=20-m?= =?UTF-8?q?=20gunicorn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gunicorn/__main__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 gunicorn/__main__.py diff --git a/gunicorn/__main__.py b/gunicorn/__main__.py new file mode 100644 index 000000000..49ba6960d --- /dev/null +++ b/gunicorn/__main__.py @@ -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()