Files

7 lines
201 B
Python

# backend/app/routes/tournaments/__init__.py
from fastapi import APIRouter
router = APIRouter(prefix="/tournaments", tags=["Tournaments"])
from . import tournaments, settings, teams, matches, report