Started from scratch and failed

Issue with register_blueprint
This commit is contained in:
2022-06-11 02:39:47 +01:00
parent 7af588da6c
commit 436c8e0e2d
99 changed files with 210 additions and 5920 deletions

View File

@ -0,0 +1,5 @@
from flask import Blueprint
t = Blueprint(name='test', import_name=__name__)
from . import foo

View File

@ -0,0 +1,5 @@
from . import t
@t.route('/')
def _t():
return 'Test'