mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
No need for duplicate test(ing).py
This commit is contained in:
parent
b9482801f6
commit
cb2d9203ee
@ -1,13 +0,0 @@
|
|||||||
# -*- coding: utf-8 -
|
|
||||||
|
|
||||||
def app(environ, start_response):
|
|
||||||
"""Simplest possible application object"""
|
|
||||||
data = 'Hello, World!\n'
|
|
||||||
status = '200 OK'
|
|
||||||
response_headers = [
|
|
||||||
('Content-type','text/plain'),
|
|
||||||
('Content-Length', len(data))
|
|
||||||
]
|
|
||||||
start_response(status, response_headers)
|
|
||||||
return [data]
|
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user