Files
KCGL/inventory-backend/app/api/v1/__init__.py

8 lines
231 B
Python
Raw Normal View History

from flask import Blueprint
from .inbound import inbound_bp
from .bom import bom_bp
v1_bp = Blueprint('v1', __name__)
v1_bp.register_blueprint(inbound_bp, url_prefix='/inbound')
v1_bp.register_blueprint(bom_bp, url_prefix='/bom')