6 lines
106 B
Python
6 lines
106 B
Python
from flask import Blueprint
|
|
|
|
|
|
bp = Blueprint("admin", __name__)
|
|
|
|
from . import routes # noqa: E402, F401
|