paramecio2fm/paramecio2/modules/welcome/welcome.py

9 lines
181 B
Python

from flask import Blueprint
welcome=Blueprint('welcome', __name__, template_folder='templates')
@welcome.route('/welcome')
def home():
return "WELCOME TO FLASK APPLICATION"