8 lines
No EOL
164 B
Python
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 |