Chittrarasu commited on
Commit
c902ef2
·
1 Parent(s): 1dcd72a
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -2,7 +2,7 @@ from fastapi import FastAPI,APIRouter
2
  from routes.sms_router import router as sms_router
3
 
4
  # Initialize FastAPI app
5
- app = FastAPI
6
 
7
  # Include the router for SMS endpoints
8
  app.include_router(sms_router)
 
2
  from routes.sms_router import router as sms_router
3
 
4
  # Initialize FastAPI app
5
+ app = FastAPI()
6
 
7
  # Include the router for SMS endpoints
8
  app.include_router(sms_router)