Added basic files

This commit is contained in:
Antonio de la Rosa 2019-12-15 20:40:51 +01:00
commit 114342bc9b
16 changed files with 1320 additions and 0 deletions

View file

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