8 lines
249 B
Python
8 lines
249 B
Python
from flask import Blueprint
|
|
|
|
bp_errors = Blueprint('errors', __name__)
|
|
bp = Blueprint('api', __name__)
|
|
bp_product = Blueprint('product', __name__, url_prefix="/product")
|
|
bp_user = Blueprint('user', __name__, url_prefix="/user")
|
|
|
|
from . import routes |