Started with area page

This commit is contained in:
2025-10-29 10:31:09 +01:00
parent bd2f7b286e
commit b3166811e5
7 changed files with 78 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
import locale
from fastapi import Depends, FastAPI
from fastapi.staticfiles import StaticFiles
@@ -5,6 +7,7 @@ from allmende_payment_system.api import root_router
from allmende_payment_system.api.dependencies import get_user
from allmende_payment_system.api.shop import shop_router
locale.setlocale(locale.LC_ALL, "de_DE.UTF-8")
app = FastAPI(dependencies=[Depends(get_user)])