mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 13:05:18 +00:00
This commit removes the deprecated frontend/web-old directory, updates various project configuration files including tsconfig, vite config, environment variables, and backend data models. It also fixes several API paths, adds tenant awareness to multiple models, and makes minor UI adjustments.
10 lines
240 B
Python
10 lines
240 B
Python
from fastapi import APIRouter
|
|
|
|
from .file.controller import FileRouter
|
|
from .monitoring import health_router
|
|
|
|
common_router = APIRouter(prefix="/common")
|
|
|
|
common_router.include_router(FileRouter)
|
|
common_router.include_router(health_router)
|