5 lines
96 B
Python
5 lines
96 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
t = Blueprint(name='test', import_name=__name__)
|
||
|
|
||
|
from . import foo
|