generated from bisco/codex-bootstrap
11 lines
295 B
Python
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]
|