6 lines
79 B
Python
6 lines
79 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
auth = Blueprint(
|
||
|
'quiz_auth',
|
||
|
__name__,
|
||
|
)
|