()
| 9 | |
| 10 | @app.route('/') # this decorator create the home route |
| 11 | def home(): |
| 12 | techs = ['HTML', 'CSS', 'Flask', 'Python'] |
| 13 | name = '30 Days Of Python Programming' |
| 14 | return render_template('home.html', techs=techs, name=name, title='Home') |
| 15 | |
| 16 | |
| 17 | @app.route('/about') |
nothing calls this directly
no outgoing calls
no test coverage detected