clan-app: renamed deps folder to 'backend'

This commit is contained in:
Qubasa
2025-09-30 14:23:27 +02:00
parent adb82a8414
commit 8ad9f99606
11 changed files with 3 additions and 4 deletions

View File

@@ -12,8 +12,8 @@ from clan_lib.log_manager import LogGroupConfig, LogManager
from clan_lib.log_manager import api as log_manager_api
from clan_app.api.file_gtk import get_clan_folder, get_system_file
from clan_app.deps.http.http_server import HttpApiServer
from clan_app.deps.webview.webview import Size, SizeHint, Webview
from clan_app.backends.http.http_server import HttpApiServer
from clan_app.backends.webview.webview import Size, SizeHint, Webview
from clan_app.middleware import (
ArgumentParsingMiddleware,
LoggingMiddleware,

View File

@@ -10,7 +10,7 @@ import pytest
from clan_lib.api import MethodRegistry, tasks
from clan_lib.async_run import is_async_cancelled
from clan_app.deps.http.http_server import HttpApiServer
from clan_app.backends.http.http_server import HttpApiServer
from clan_app.middleware import (
ArgumentParsingMiddleware,
MethodExecutionMiddleware,

View File

@@ -183,7 +183,6 @@ class Webview:
"""Create and initialize the WebviewBridge with current middleware."""
# Use shared_threads if provided, otherwise let WebviewBridge use its default
if self.shared_threads is not None:
log.warning("create_bridge: Shared threads id: %s", id(self.shared_threads))
bridge = WebviewBridge(
webview=self,
middleware_chain=tuple(self._middleware),