This changed a bunch of code but no Reviewed-on: #17 Co-authored-by: ahtlon <git@ahtlon.de> Co-committed-by: ahtlon <git@ahtlon.de>
8 lines
184 B
Python
8 lines
184 B
Python
from fastapi import FastAPI
|
|
|
|
from .controllers import cardManager, userManager
|
|
|
|
app = FastAPI()
|
|
app.include_router(userManager.user_router)
|
|
app.include_router(cardManager.card_router)
|