11 lines
274 B
Python
11 lines
274 B
Python
import uvicorn
|
|
from fastapi import FastAPI
|
|
from app.routers.classify_email import router as classify_email_router
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(classify_email_router)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app.main:app", host="0.0.0.0", port=7999, reload=True) |