from flask import Blueprint core = Blueprint('core', __name__) @core.route('/') def index(): return 'Welcome to the Plant Price Tracker!'