Frontend v.0.1

This commit is contained in:
2026-02-12 17:29:24 +01:00 Verified
parent f8fe3eb991
commit c12d962da0
20 changed files with 2087 additions and 181 deletions
-1
View File
@@ -5,7 +5,6 @@ from enum import Enum
class TournamentTypes(str, Enum):
SINGLE = "Single"
DOUBLE = "Double"
ROUND_ROBIN = "Round_Robin"
class BracketType(str, Enum):
+1 -1
View File
@@ -13,7 +13,7 @@ async def lifespan(app: FastAPI):
yield
app = FastAPI(title="Tournament Bracket API", lifespan=lifespan)
app = FastAPI(title="Tournament Bracket API", lifespan=lifespan, root_path="/api")
app.include_router(tournaments.router)
app.include_router(auth.router)
app.include_router(websocket.router)