(key string, out any)
| 130 | } |
| 131 | |
| 132 | func (s *SharedState) GetJSON(key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 133 | return s.GetJSONWithContext(context.Background(), key, out) |
| 134 | } |
| 135 | |
| 136 | func (s *SharedState) GetJSONWithContext(ctx context.Context, key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 137 | if err := s.ensureStorage(); err != nil { |