"""
Notifications router — stub.

No public endpoints are exposed in this sprint.  This file registers an
empty router so the module can be included in v1.py without errors.
Future endpoints (template management, admin template overrides) will be
added here.
"""

from fastapi import APIRouter

router = APIRouter()

# TODO: Add notification template management endpoints
# GET  /notifications/templates          — list templates
# GET  /notifications/templates/{id}     — get template
# PATCH /notifications/templates/{id}   — update template (merchant override)
