9 lines
181 B
Python
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"
|