()
| 19296 | |
| 19297 | @app.route('/assets/face-recognition-banner.jpg') |
| 19298 | def face_recognition_banner(): |
| 19299 | path = Path(__file__).resolve().parent / "Immagine.jpg" |
| 19300 | if not path.exists(): |
| 19301 | return "Immagine non trovata", 404 |
| 19302 | return send_file(str(path), mimetype="image/jpeg") |
| 19303 | |
| 19304 | @app.route('/api/save_creds', methods=['POST']) |
| 19305 | def api_save(): |
nothing calls this directly
no outgoing calls
no test coverage detected