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