\ The ``gunicorn`` command line runner for launching Gunicorn with generic WSGI applications.
(prog=None)
| 58 | |
| 59 | |
| 60 | def run(prog=None): |
| 61 | """\ |
| 62 | The ``gunicorn`` command line runner for launching Gunicorn with |
| 63 | generic WSGI applications. |
| 64 | """ |
| 65 | from gunicorn.app.wsgiapp import WSGIApplication |
| 66 | WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]", prog=prog).run() |
| 67 | |
| 68 | |
| 69 | if __name__ == '__main__': |
no test coverage detected