2025-05-17 21:11:03 -05:00

8 lines
144 B
Python

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