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)