mirror of
https://codeberg.org/Freedium-cfd/web.git
synced 2026-03-11 09:04:37 +00:00
5 lines
143 B
Python
5 lines
143 B
Python
import uvicorn
|
|
|
|
|
|
def execute_server(host: str = "0.0.0.0", port: int = 7080) -> None:
|
|
uvicorn.run("server.main:app", host=host, port=port)
|