mirror of
https://github.com/sortedcord/alemno-payments.git
synced 2026-07-22 04:02:49 +05:30
6 lines
115 B
Python
6 lines
115 B
Python
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app.app:app", host="0.0.0.0", port=3000, reload=True)
|
|
|