1234567891011121314151617181920212223242526 |
- package service
- import (
- "github.com/langgenius/dify-plugin-daemon/internal/core/plugin_manager/debugging_runtime"
- "github.com/langgenius/dify-plugin-daemon/internal/types/entities"
- "github.com/langgenius/dify-plugin-daemon/internal/types/exception"
- )
- func GetRemoteDebuggingKey(tenant_id string) *entities.Response {
- type response struct {
- Key string `json:"key"`
- }
- key, err := debugging_runtime.GetConnectionKey(debugging_runtime.ConnectionInfo{
- TenantId: tenant_id,
- })
- if err != nil {
- return exception.InternalServerError(err).ToResponse()
- }
- return entities.NewSuccessResponse(response{
- Key: key,
- })
- }
|