mirror of https://github.com/Bunsly/JobSpy
6 lines
148 B
Python
6 lines
148 B
Python
|
from fastapi import APIRouter
|
||
|
from .v1 import router as v1_router
|
||
|
|
||
|
router = APIRouter(prefix="/api", tags=["api"])
|
||
|
router.include_router(v1_router)
|