AyoubChLin's picture
feat: initial commit of Classifier General API with FastAPI
50231a8
Raw
History Blame Contribute Delete
142 Bytes
from app.main import app
if __name__ == "__main__":
import uvicorn
uvicorn.run("main:app", host="0.0.0.0", port=4002, reload=True)