webhook_service.go 449 B

123456789101112131415161718
  1. package plugin_daemon
  2. import (
  3. "github.com/langgenius/dify-plugin-daemon/internal/core/session_manager"
  4. "github.com/langgenius/dify-plugin-daemon/internal/types/entities/requests"
  5. "github.com/langgenius/dify-plugin-daemon/internal/utils/stream"
  6. )
  7. func InvokeWebhook(
  8. session *session_manager.Session,
  9. request *requests.RequestInvokeWebhook,
  10. ) (
  11. *stream.StreamResponse[[]byte], error,
  12. ) {
  13. // TODO: implement this function
  14. return nil, nil
  15. }