move trigger_debug_service to trigger sub dir

This commit is contained in:
hjlarry 2025-10-02 00:27:34 +08:00
parent f96bd4eb18
commit 31b15b492e
4 changed files with 3 additions and 3 deletions

View File

@ -35,8 +35,8 @@ from models.workflow import Workflow
from services.app_generate_service import AppGenerateService
from services.errors.app import WorkflowHashNotEqualError
from services.errors.llm import InvokeRateLimitError
from services.trigger.trigger_debug_service import TriggerDebugService, WebhookDebugService
from services.trigger.webhook_service import WebhookService
from services.trigger_debug_service import TriggerDebugService, WebhookDebugService
from services.workflow_service import DraftWorkflowDeletionError, WorkflowInUseError, WorkflowService
logger = logging.getLogger(__name__)

View File

@ -5,8 +5,8 @@ from flask import jsonify
from werkzeug.exceptions import NotFound, RequestEntityTooLarge
from controllers.trigger import bp
from services.trigger.trigger_debug_service import WebhookDebugService
from services.trigger.webhook_service import WebhookService
from services.trigger_debug_service import WebhookDebugService
logger = logging.getLogger(__name__)

View File

@ -15,7 +15,7 @@ from extensions.ext_database import db
from extensions.ext_storage import storage
from models.provider_ids import TriggerProviderID
from models.trigger import TriggerSubscription
from services.trigger_debug_service import TriggerDebugService
from services.trigger.trigger_debug_service import TriggerDebugService
from services.trigger_service import TriggerService
from services.workflow.entities import PluginTriggerDispatchData