6 lines
93 B
Python
6 lines
93 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('admin', __name__)
|
|
|
|
from app.admin import routes
|