Some checks failed
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 27s
CI / test-go-edu-search (push) Successful in 40s
CI / test-python-klausur (push) Failing after 2m30s
CI / test-python-agent-core (push) Successful in 28s
CI / test-nodejs-website (push) Successful in 20s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
719 B
Python
22 lines
719 B
Python
"""
|
|
BreakPilot Messenger API — Barrel Re-export.
|
|
|
|
Stellt Endpoints fuer Kontakte, Konversationen, Nachrichten,
|
|
CSV-Import, Gruppenmanagement und Templates bereit.
|
|
|
|
Split into:
|
|
- messenger_models.py: Pydantic models
|
|
- messenger_helpers.py: JSON file storage & default templates
|
|
- messenger_contacts.py: Contact CRUD & CSV import/export
|
|
- messenger_conversations.py: Conversations, messages, groups, templates, stats
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .contacts import router as _contacts_router
|
|
from .conversations import router as _conversations_router
|
|
|
|
router = APIRouter(prefix="/api/messenger", tags=["Messenger"])
|
|
router.include_router(_contacts_router)
|
|
router.include_router(_conversations_router)
|