remove uvicorn run

pull/72/head
Tal Leibman 3 years ago committed by Tom Hacohen
parent 31e0e0b832
commit 4bd826b3be

@ -31,9 +31,3 @@ app.add_middleware(
@app.exception_handler(CustomHttpException)
async def custom_exception_handler(request: Request, exc: CustomHttpException):
return MsgpackResponse(status_code=exc.status_code, content=exc.as_dict)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)

Loading…
Cancel
Save