()
| 80 | |
| 81 | @app.route('/') |
| 82 | def index(): |
| 83 | conn = get_db_connection() |
| 84 | products = conn.execute('SELECT * FROM products').fetchall() |
| 85 | conn.close() |
| 86 | return render_template('index.html', products=products) |
nothing calls this directly
no test coverage detected