Update main.py
Browse files
main.py
CHANGED
@@ -5,6 +5,8 @@ import auth, tts
|
|
5 |
from auth import verify_token # Import a function for verifying tokens
|
6 |
|
7 |
app = FastAPI()
|
|
|
|
|
8 |
|
9 |
# Include the authentication router with the prefix '/auth'
|
10 |
app.include_router(auth.router, prefix="/auth")
|
|
|
5 |
from auth import verify_token # Import a function for verifying tokens
|
6 |
|
7 |
app = FastAPI()
|
8 |
+
router = APIRouter()
|
9 |
+
|
10 |
|
11 |
# Include the authentication router with the prefix '/auth'
|
12 |
app.include_router(auth.router, prefix="/auth")
|