mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 18:30:23 +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
|