9 lines
309 B
Python
9 lines
309 B
Python
from flask import Blueprint
|
|
|
|
bp_errors = Blueprint('errors', __name__)
|
|
bp = Blueprint('api', __name__)
|
|
bp_product = Blueprint('products', __name__, url_prefix="/products")
|
|
bp_user = Blueprint('user', __name__, url_prefix="/user")
|
|
bp_cart = Blueprint('cart', __name__, url_prefix="/cart")
|
|
|
|
from . import routes |