mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
5 lines
121 B
Python
5 lines
121 B
Python
from gunicorn.httpserver import HTTPServer
|
|
|
|
if __name__ == '__main__':
|
|
server = HTTPServer(None, 4)
|
|
server.join() |