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