diff --git a/runner/options.go b/runner/options.go index a62babb7..1629e0ab 100644 --- a/runner/options.go +++ b/runner/options.go @@ -717,6 +717,14 @@ func WithProtoset(protoset string) Option { } } +func WithProtosetBinary(b []byte) Option { + return func(o *RunConfig) error { + o.protosetBinary = b + + return nil + } +} + // WithStreamInterval sets the stream interval func WithStreamInterval(d time.Duration) Option { return func(o *RunConfig) error {