Chief-Joy-Officer / interfaces /whatsapp /webhook_endpoint.py
ric9176's picture
Add interface and update pyproject.toml for new deeps
5cb5f85
raw
history blame contribute delete
160 Bytes
from fastapi import FastAPI
from ai_companion.interfaces.whatsapp.whatsapp_response import whatsapp_router
app = FastAPI()
app.include_router(whatsapp_router)