run.go 373 B

12345678910111213141516
  1. package aws_manager
  2. import "github.com/langgenius/dify-plugin-daemon/internal/types/entities/plugin_entities"
  3. func (r *AWSPluginRuntime) StartPlugin() error {
  4. return nil
  5. }
  6. func (r *AWSPluginRuntime) Wait() (<-chan bool, error) {
  7. return nil, nil
  8. }
  9. func (r *AWSPluginRuntime) Type() plugin_entities.PluginRuntimeType {
  10. return plugin_entities.PLUGIN_RUNTIME_TYPE_AWS
  11. }