initial commit

This commit is contained in:
2025-05-17 21:11:03 -05:00
commit 6fb15b6d5c
8 changed files with 60 additions and 0 deletions

7
app/core/routes.py Normal file
View File

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