()
| 273 | } |
| 274 | |
| 275 | func (s *SharedState) ensureStorage() error { |
| 276 | if s == nil || s.storage == nil { |
| 277 | return ErrSharedStorageNotConfigured |
| 278 | } |
| 279 | |
| 280 | return nil |
| 281 | } |
| 282 | |
| 283 | func (s *SharedState) setEncodedWithContext( |
| 284 | ctx context.Context, |
no outgoing calls
no test coverage detected