/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/apps/__init__.py

  • Committer: Colin Watson
  • Date: 2022-09-01 09:53:13 UTC
  • Revision ID: cjwatson@canonical.com-20220901095313-8eb7sarpz7hwyu0m
Update NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
robots_app = convert_file_errors(fileapp.FileApp(
20
20
    os.path.join(static, 'robots.txt')))
 
21
 
 
22
 
 
23
def health_app(environ, start_response):
 
24
    start_response('200 OK', [])
 
25
    yield b'ok'