"""API routes and schemas.""" from fastapi import APIRouter from .routes.system import router as system_router from .routes.devices import router as devices_router from .routes.templates import router as templates_router from .routes.postprocessing import router as postprocessing_router from .routes.picture_sources import router as picture_sources_router from .routes.pattern_templates import router as pattern_templates_router from .routes.picture_targets import router as picture_targets_router router = APIRouter() router.include_router(system_router) router.include_router(devices_router) router.include_router(templates_router) router.include_router(postprocessing_router) router.include_router(pattern_templates_router) router.include_router(picture_sources_router) router.include_router(picture_targets_router) __all__ = ["router"]