main
py 20 lines 498 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.threat_intel.routes.epss import threat_intel_epss_router
4 from app.threat_intel.routes.socfortress import threat_intel_socfortress_router
5
6 # Instantiate the APIRouter
7 router = APIRouter()
8
9 # Include the Threat Intel related routes
10 router.include_router(
11 threat_intel_socfortress_router,
12 prefix="/threat_intel",
13 tags=["Threat Intel"],
14 )
15
16 router.include_router(
17 threat_intel_epss_router,
18 prefix="/threat_intel",
19 tags=["Threat Intel"],
20 )