Flask - Ecosystem and Patterns
What is the main issue in this Flask code that breaks the pattern and causes an error?
from flask import Flask, Blueprint
bp = Blueprint('bp', __name__)
@bp.route('/test')
def test():
return 'Test page'
app = Flask(__name__)
if __name__ == '__main__':
app.run()