integrate webserver into cli

integrate webserver into cli
This commit is contained in:
Jörg Thalheim
2023-08-23 17:17:34 +02:00
parent 7f6f147d84
commit acc648fc6b
5 changed files with 25 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
from .routers import health, root
app = FastAPI()
app.include_router(health.router)
app.include_router(root.router)