netviz/app/api/__init__.py
2025-03-25 23:41:13 +01:00

8 lines
No EOL
164 B
Python

"""
API blueprint for JSON endpoints.
"""
from flask import Blueprint
api_bp = Blueprint("api", __name__, url_prefix="/api/v1")
from app.api import routes # noqa