()
| 32 | return send_from_directory(app.static_folder, 'apple-touch-icon-precomposed.png') |
| 33 | |
| 34 | @app.route('/apple-touch-icon.png') |
| 35 | def apple_icon(): |
| 36 | return send_from_directory(app.static_folder, 'apple-touch-icon.png') |
| 37 | |
| 38 | # ==================== 原有路由 ==================== |
nothing calls this directly
no outgoing calls
no test coverage detected