edit : 기본 rest서버구조 추가

This commit is contained in:
2025-01-14 17:26:27 +09:00
parent e53282d7e7
commit bd28fcdca4
37 changed files with 4194 additions and 1 deletions

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
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)