batman
This commit is contained in:
commit
66f9ce3614
33 changed files with 2271 additions and 0 deletions
8
app/api/__init__.py
Normal file
8
app/api/__init__.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue