Update main.py
Browse files
main.py
CHANGED
@@ -13,10 +13,10 @@ router = APIRouter()
|
|
13 |
templates = Jinja2Templates(directory="templates")
|
14 |
|
15 |
# Include the authentication router with the prefix '/auth'
|
16 |
-
app.include_router(auth.router, prefix="/auth")
|
17 |
|
18 |
# Include the TTS router with the prefix '/tts'
|
19 |
-
app.include_router(tts.router, prefix="/tts")
|
20 |
|
21 |
# Dependency for verifying the user's token
|
22 |
def get_current_user(token: str = Depends(verify_token)):
|
|
|
13 |
templates = Jinja2Templates(directory="templates")
|
14 |
|
15 |
# Include the authentication router with the prefix '/auth'
|
16 |
+
#app.include_router(auth.router, prefix="/auth")
|
17 |
|
18 |
# Include the TTS router with the prefix '/tts'
|
19 |
+
#app.include_router(tts.router, prefix="/tts")
|
20 |
|
21 |
# Dependency for verifying the user's token
|
22 |
def get_current_user(token: str = Depends(verify_token)):
|