Return a simple HTML page with a friendly message.
()
| 13 | |
| 14 | @app.route('/') |
| 15 | def hello(): |
| 16 | """Return a simple HTML page with a friendly message.""" |
| 17 | message = "It's running!" |
| 18 | |
| 19 | return render_template('index.html', message=message) |
| 20 | |
| 21 | if __name__ == '__main__': |
| 22 | signal(SIGINT, handler) |
nothing calls this directly
no outgoing calls
no test coverage detected