mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
4 lines
112 B
Python
4 lines
112 B
Python
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("api.api:app", host="0.0.0.0", port=8000, reload=True)
|