MCPcopy
hub / github.com/gofiber/fiber / GetXML

Method GetXML

shared_state.go:204–206  ·  view source on GitHub ↗
(key string, out any)

Source from the content-addressed store, hash-verified

202}
203
204func (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
208func (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 {

Calls 1

GetXMLWithContextMethod · 0.95