mirror of
https://codeberg.org/Freedium-cfd/web.git
synced 2026-03-11 09:04:37 +00:00
fix(api): uvicorn run command path
This commit is contained in:
parent
52ef544a1e
commit
86a2005429
1 changed files with 1 additions and 1 deletions
|
|
@ -2,4 +2,4 @@ import uvicorn
|
|||
|
||||
|
||||
def start_server(host: str = "0.0.0.0", port: int = 7080) -> None:
|
||||
uvicorn.run("freedium_library.api.app", host=host, port=port)
|
||||
uvicorn.run("freedium_library.api.app:app", host=host, port=port)
|
||||
|
|
|
|||
Loading…
Reference in a new issue