8 lines
164 B
Python
8 lines
164 B
Python
"""
|
|
app/admin/audit_log/routes.py
|
|
Phase 2 implementation.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
audit_log_bp = Blueprint("audit_log", __name__, url_prefix="/audit-log")
|