""" | |
This module sets up the main Blueprint for the Flask application. | |
""" | |
from flask import Blueprint | |
bp = Blueprint("data", __name__) |
""" | |
This module sets up the main Blueprint for the Flask application. | |
""" | |
from flask import Blueprint | |
bp = Blueprint("data", __name__) |