feat: phase 1C JWT UI, events/hosts API, Vue frontend

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
PTah
2026-05-26 21:46:34 +10:00
parent 34b7f0d0fe
commit 43e49d1f02
27 changed files with 2498 additions and 23 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
from fastapi import APIRouter
from app.api.v1 import events, health
from app.api.v1 import auth, events, health, hosts
api_router = APIRouter()
api_router.include_router(health.router)
api_router.include_router(auth.router)
api_router.include_router(events.router)
api_router.include_router(hosts.router)