This commit is contained in:
pika 2025-03-25 23:41:13 +01:00
commit 66f9ce3614
33 changed files with 2271 additions and 0 deletions

8
app/api/__init__.py Normal file
View file

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