Files
GLASSES_AI_SERVER/main.py

6 lines
179 B
Python
Raw Normal View History

2025-01-14 17:26:27 +09:00
import uvicorn
from rest.app.common.config import conf
if __name__ == '__main__':
uvicorn.run('rest.app.main:app', host='0.0.0.0', port=conf().REST_SERVER_PORT, reload=True)