Create core Blueprint skeleton

This commit is contained in:
Santiago L 2021-12-23 00:29:44 +01:00
parent 2c2e93eb3b
commit 339d7f7d7f
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from flask import Blueprint
core = Blueprint('core', __name__)
@core.route('/profile/')
def user_profile():
return "Hello world!"