9 lines
139 B
Python
9 lines
139 B
Python
from flask import Blueprint
|
|
|
|
m_auth = Blueprint(
|
|
'auth',
|
|
__name__,
|
|
template_folder='templates'
|
|
)
|
|
|
|
from . import views |