agent-orchestrator/backend/internal/adapters/agent/autohand/install.go

9 lines
200 B
Go

package autohand
import "context"
// ResolveBinary resolves the executable path for the plugin.
func (p *Plugin) ResolveBinary(ctx context.Context) (string, error) {
return p.autohandBinary(ctx)
}