20 lines
466 B
Python
20 lines
466 B
Python
import datetime
|
|
import logging
|
|
import os
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from.routers_v2 import current, teams, rarity, cardsets, players, packtypes, packs
|
|
|
|
app = FastAPI(
|
|
responses={404: {'description': 'Not found'}}
|
|
)
|
|
|
|
app.include_router(current.router)
|
|
app.include_router(teams.router)
|
|
app.include_router(rarity.router)
|
|
app.include_router(cardsets.router)
|
|
app.include_router(players.router)
|
|
app.include_router(packtypes.router)
|
|
app.include_router(packs.router)
|