mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 09:45:27 -04:00
16 lines
380 B
Go
16 lines
380 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/langgenius/dify-plugin-daemon/internal/service"
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/entities/requests"
|
|
)
|
|
|
|
func GetRemoteDebuggingKey(c *gin.Context) {
|
|
BindRequest(
|
|
c, func(request requests.RequestGetRemoteDebuggingKey) {
|
|
c.JSON(200, service.GetRemoteDebuggingKey(request.TenantID))
|
|
},
|
|
)
|
|
}
|