You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/api/services/plugin/plugin_debugging_service.py

9 lines
267 B
Python

from core.plugin.manager.debugging import PluginDebuggingManager
class PluginDebuggingService:
@staticmethod
def get_plugin_debugging_key(tenant_id: str) -> str:
manager = PluginDebuggingManager()
return manager.get_debugging_key(tenant_id)