8 lines
139 B
Python
8 lines
139 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
auth = Blueprint(
|
||
|
'quiz_auth',
|
||
|
__name__,
|
||
|
template_folder='templates',
|
||
|
static_folder='static'
|
||
|
)
|