Gregniuki commited on
Commit
346376e
·
1 Parent(s): 339ea6e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,8 +1,8 @@
1
- # main.py
2
 
3
  from fastapi import FastAPI, Depends, HTTPException
4
- from app.routes import auth, tts
5
- from app.auth import verify_token # Import a function for verifying tokens
6
 
7
  app = FastAPI()
8
 
 
1
+ # app.py
2
 
3
  from fastapi import FastAPI, Depends, HTTPException
4
+ from .routes import auth, tts
5
+ from .auth import verify_token # Import a function for verifying tokens
6
 
7
  app = FastAPI()
8