Initial commit

This commit is contained in:
innotex
2026-01-16 18:40:39 +01:00
commit 9ec63a8aa2
76 changed files with 13235 additions and 0 deletions

10
backend/app/api/routes.py Normal file
View File

@@ -0,0 +1,10 @@
from fastapi import APIRouter
from app.api.endpoints import auth, system, docker, packages, shortcuts
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["authentication"])
api_router.include_router(system.router, prefix="/system", tags=["system"])
api_router.include_router(docker.router, prefix="/docker", tags=["docker"])
api_router.include_router(packages.router, prefix="/packages", tags=["packages"])
api_router.include_router(shortcuts.router, prefix="/shortcuts", tags=["shortcuts"])