JobSpy/main.py

11 lines
185 B
Python
Raw Normal View History

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