initial commit
This commit is contained in:
7
app/core/routes.py
Normal file
7
app/core/routes.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask import Blueprint
|
||||
|
||||
core = Blueprint('core', __name__)
|
||||
|
||||
@core.route('/')
|
||||
def index():
|
||||
return 'Welcome to the Plant Price Tracker!'
|
Reference in New Issue
Block a user