io.go 404 B

1234567891011121314151617
  1. package aws_manager
  2. import "github.com/langgenius/dify-plugin-daemon/internal/types/entities"
  3. func (r *AWSPluginRuntime) Listen(session_id string) *entities.BytesIOListener {
  4. l := entities.NewIOListener[[]byte]()
  5. return l
  6. }
  7. func (r *AWSPluginRuntime) Write(session_id string, data []byte) {
  8. }
  9. func (r *AWSPluginRuntime) Request(session_id string, data []byte) ([]byte, error) {
  10. return nil, nil
  11. }