""" Consumption Sheets Module Handles production lot tracking and consumption reporting """ from flask import Blueprint def create_blueprint(): """Create and return the conssheets blueprint""" bp = Blueprint( 'conssheets', __name__, template_folder='templates', url_prefix='/conssheets' ) # Import and register routes from .routes import register_routes register_routes(bp) return bp