liberty-framework 6.0.63__py3-none-any.whl → 6.0.65__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
liberty/main.py CHANGED
@@ -217,7 +217,7 @@ async def lifespan(app: FastAPI):
217
217
 
218
218
  def main():
219
219
  """Entry point for running the application."""
220
- config = uvicorn.Config("app.main:app", host="0.0.0.0", port=8000, reload=True, log_level="warning")
220
+ config = uvicorn.Config("liberty.main:app", host="0.0.0.0", port=8000, reload=True, log_level="warning")
221
221
  server = uvicorn.Server(config)
222
222
 
223
223
  try: