core/server.py

5 lines
112 B
Python

import uvicorn
if __name__ == '__main__':
uvicorn.run("main:app", host="0.0.0.0", port=24579, reload=True)