From a6332e23e99ba80ec2a9bd2df361d64ea3ea48b3 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Sat, 4 Jul 2026 20:49:58 +0200 Subject: [PATCH] feat(google_search): wire capability into REST door --- surfsense_backend/app/routes/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/surfsense_backend/app/routes/__init__.py b/surfsense_backend/app/routes/__init__.py index f4f22e6f7..f32c921fa 100644 --- a/surfsense_backend/app/routes/__init__.py +++ b/surfsense_backend/app/routes/__init__.py @@ -2,6 +2,7 @@ from fastapi import APIRouter, Depends # Import verb namespaces for their registration side effects before the door builds. import app.capabilities.google_maps +import app.capabilities.google_search import app.capabilities.web import app.capabilities.youtube # noqa: F401 from app.automations.api import router as automations_router