Serve the main index page
()
| 20 | |
| 21 | @app.route('/') |
| 22 | def index(): |
| 23 | """Serve the main index page""" |
| 24 | return send_from_directory('static', 'index.html') |
| 25 | |
| 26 | @app.route('/static/<path:path>') |
| 27 | def static_file(path): |
nothing calls this directly
no outgoing calls
no test coverage detected