Files
azionelab/infra/docker/backend/placeholder_wsgi.py

11 lines
295 B
Python

def application(environ, start_response):
body = b"AzioneLab backend placeholder\n"
start_response(
"503 Service Unavailable",
[
("Content-Type", "text/plain; charset=utf-8"),
("Content-Length", str(len(body))),
],
)
return [body]