5 lines
98 B
Python
5 lines
98 B
Python
def application(environ, start_response):
|
|
|
|
start_response('204 No Content', [])
|
|
return []
|