fixed issues

This commit is contained in:
Matteo Baldi 2025-08-02 05:31:20 +02:00
parent 502959d83b
commit 10d13e04f9
3 changed files with 28 additions and 18 deletions

View file

@ -1,4 +1,7 @@
from dotenv import load_dotenv
load_dotenv()
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
@ -7,7 +10,6 @@ from endpoints.queue import queue_router
from routes import router
from endpoints.spotify_api import music_router
load_dotenv()
app = FastAPI(title="Simple Fullstack API")