(key string, out any)
| 202 | } |
| 203 | |
| 204 | func (s *SharedState) GetXML(key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 205 | return s.GetXMLWithContext(context.Background(), key, out) |
| 206 | } |
| 207 | |
| 208 | func (s *SharedState) GetXMLWithContext(ctx context.Context, key string, out any) ([]byte, bool, error) { //nolint:gocritic // Keep unnamed returns for clarity. |
| 209 | if err := s.ensureStorage(); err != nil { |