9 lines
212 B
Python
9 lines
212 B
Python
"""API v1 blueprint."""
|
|
from flask import Blueprint
|
|
|
|
# Create v1 API blueprint
|
|
api_v1_bp = Blueprint("api_v1", __name__)
|
|
|
|
# Import route modules to register them
|
|
from app.api.v1 import auth, users, organizations
|