JobSpy/main.py

12 lines
189 B
Python
Raw Normal View History

2023-07-06 16:44:38 -07:00
from fastapi import FastAPI
2023-07-08 07:34:55 -07:00
2023-07-06 16:44:38 -07:00
from api import router as api_router
app = FastAPI()
app.include_router(api_router)
@app.get("/")
async def root():
2023-07-08 07:34:55 -07:00
return {"message": "JobSpy Backend"}