mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
11 lines
242 B
Python
11 lines
242 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
from api.v1.routers import health,apps
|
||
|
|
||
|
|
||
|
def get_api():
|
||
|
api_router = APIRouter()
|
||
|
api_router.include_router(health.router)
|
||
|
api_router.include_router(apps.router, prefix="/apps")
|
||
|
return api_router
|