WithSandboxStore sets the sandbox store.
(client sandbox.Store)
| 162 | |
| 163 | // WithSandboxStore sets the sandbox store. |
| 164 | func WithSandboxStore(client sandbox.Store) ServicesOpt { |
| 165 | return func(s *services) { |
| 166 | s.sandboxStore = client |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | // WithTransferService sets the transfer service. |
| 171 | func WithTransferService(tr transfer.Transferrer) ServicesOpt { |
no outgoing calls
no test coverage detected
searching dependent graphs…