feat: phase 1C JWT UI, events/hosts API, Vue frontend
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user