File size: 160 Bytes
5cb5f85
 
 
 
 
1
2
3
4
5
from fastapi import FastAPI
from ai_companion.interfaces.whatsapp.whatsapp_response import whatsapp_router

app = FastAPI()
app.include_router(whatsapp_router)