mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-14 18:58:10 +08:00
5 lines
108 B
Python
5 lines
108 B
Python
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app.app:app", host="0.0.0.0", log_level="info")
|