from flask import Blueprint

# Initialize the routes blueprint
routes_bp = Blueprint('routes', __name__)

# Import the API routes
from .api import *  # This will import all the routes defined in api.py