Chittrarasu's picture
deploy
c11261f
raw
history blame
337 Bytes
from fastapi import FastAPI,APIRouter
from routes.sms_router import router as sms_router
# Initialize FastAPI app
app = FastAPI()
# Include the router for SMS endpoints
app.include_router(sms_router)
@app.get("/")
def home():
return {"message": "Welcome to embedding sms API, use /docs to post SMS text and get demenstions"}