Skip to content
Snippets Groups Projects
__init__.py 308 B
Newer Older
"""Version 1 of the :term:`GSO` :term:`API`."""
from fastapi import APIRouter

from gso.api.v1.imports import router as imports_router
from gso.api.v1.subscriptions import router as subscriptions_router

router = APIRouter()

router.include_router(imports_router)
router.include_router(subscriptions_router)