JobSpy/api/__init__.py

9 lines
159 B
Python
Raw Normal View History

2023-07-06 16:44:38 -07:00
from fastapi import APIRouter
from .v1 import router as v1_router
2023-07-09 13:15:39 -07:00
router = APIRouter(
prefix="/api",
tags=["api"],
)
2023-07-06 16:44:38 -07:00
router.include_router(v1_router)