mirror of
https://github.com/PaiGramTeam/FixMiYouShe.git
synced 2024-11-23 00:01:40 +00:00
9 lines
143 B
Python
9 lines
143 B
Python
|
from uvicorn import run
|
||
|
|
||
|
from src.app import app
|
||
|
from src.env import PORT
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
run(app, host="0.0.0.0", port=PORT)
|