9 lines
141 B
Python
9 lines
141 B
Python
from flask import Blueprint
|
|
|
|
m_admin = Blueprint(
|
|
'admin',
|
|
__name__,
|
|
template_folder='templates'
|
|
)
|
|
|
|
from . import views |