Add backend and frontend skeleton

This commit is contained in:
2025-11-26 14:47:36 +01:00
parent 1dc225dd77
commit 7ec9324997
37 changed files with 6973 additions and 119 deletions

View File

@@ -0,0 +1 @@
"""API v1 package."""

View File

@@ -0,0 +1,8 @@
"""Version 1 API router aggregator."""
from fastapi import APIRouter
from features.auth.router import router as auth_router
router = APIRouter()
router.include_router(auth_router)