release
This commit is contained in:
parent
3d3f1e5383
commit
708ca29562
@ -671,10 +671,6 @@ async def health_check():
|
|||||||
"initialization_errors": app_state["initialization_errors"]
|
"initialization_errors": app_state["initialization_errors"]
|
||||||
}
|
}
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
import uvicorn
|
|
||||||
uvicorn.run(app, host=settings.HOST, port=settings.PORT)
|
|
||||||
|
|
||||||
@app.get(
|
@app.get(
|
||||||
"/store/{store_id}",
|
"/store/{store_id}",
|
||||||
response_model=StoreInfoResponse,
|
response_model=StoreInfoResponse,
|
||||||
@ -733,3 +729,7 @@ async def get_store_info(
|
|||||||
store_id=store_id,
|
store_id=store_id,
|
||||||
execution_time=execution_time
|
execution_time=execution_time
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import uvicorn
|
||||||
|
uvicorn.run(app, host=settings.HOST, port=settings.PORT)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user