Added basic files
This commit is contained in:
commit
114342bc9b
16 changed files with 1320 additions and 0 deletions
9
paramecio2/modules/welcome/welcome.py
Normal file
9
paramecio2/modules/welcome/welcome.py
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue