mirror of https://github.com/Bunsly/JobSpy
6 lines
139 B
Python
6 lines
139 B
Python
|
from fastapi import APIRouter
|
||
|
from .jobs import router as jobs_router
|
||
|
|
||
|
router = APIRouter(prefix="/v1")
|
||
|
router.include_router(jobs_router)
|