mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-02-03 09:48:38 +08:00
11 lines
221 B
Python
11 lines
221 B
Python
from fastapi import APIRouter
|
|
|
|
from .routers import health, apps
|
|
|
|
|
|
def get_api():
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router)
|
|
api_router.include_router(apps.router)
|
|
return api_router
|