(key string, out any)
| 178 | } |
| 179 | |
| 180 | func (s *SharedState) GetCBOR(key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 181 | return s.GetCBORWithContext(context.Background(), key, out) |
| 182 | } |
| 183 | |
| 184 | func (s *SharedState) GetCBORWithContext(ctx context.Context, key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 185 | if err := s.ensureStorage(); err != nil { |