Gregniuki commited on
Commit
b72a9f9
·
1 Parent(s): f09663a

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
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)):