main
py 19 lines 522 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.connectors.velociraptor.routes.artifacts import velociraptor_artifacts_router
4 from app.connectors.velociraptor.routes.flows import velociraptor_flows_router
5
6 # Instantiate the APIRouter
7 router = APIRouter()
8
9 # Include the Velociraptor related routes
10 router.include_router(
11 velociraptor_artifacts_router,
12 prefix="/artifacts",
13 tags=["velociraptor-artifacts"],
14 )
15 router.include_router(
16 velociraptor_flows_router,
17 prefix="/flows",
18 tags=["velociraptor-flows"],
19 )