WithDefaultRuntime sets the default runtime on the client
(rt string)
| 59 | |
| 60 | // WithDefaultRuntime sets the default runtime on the client |
| 61 | func WithDefaultRuntime(rt string) Opt { |
| 62 | return func(c *clientOpts) error { |
| 63 | c.defaultRuntime = rt |
| 64 | return nil |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | // WithDefaultSandboxer sets the default sandboxer on the client |
| 69 | func WithDefaultSandboxer(sb string) Opt { |