Files
gatehouse-api/app/api/v1/__init__.py
T

9 lines
212 B
Python
Raw Normal View History

2026-01-08 01:00:26 +10:30
"""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