()
| 150 | |
| 151 | @app.route("/health") |
| 152 | def health(): |
| 153 | body = dict(health_body) |
| 154 | cached = app.extensions.get(STORE_EXTENSION_KEY) |
| 155 | if isinstance(cached, CachingStore): |
| 156 | body["manpage_cache"] = cached.manpage_cache_info()._asdict() |
| 157 | return jsonify(body) |
| 158 | |
| 159 | @app.route("/favicon.ico") |
| 160 | def favicon(): |
nothing calls this directly
no test coverage detected