Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for intro (0.18 sec)

  1. cmd/api-response.go

    		Key   string
    		Value string
    	}{
    		Key:   k,
    		Value: v,
    	})
    }
    
    type xmlKeyEntry struct {
    	XMLName xxml.Name
    	Value   string `xml:",chardata"`
    }
    
    // MarshalXML - StringMap marshals into XML.
    func (s *Metadata) MarshalXML(e *xxml.Encoder, start xxml.StartElement) error {
    	if s == nil {
    		return nil
    	}
    
    	if len(s.Items) == 0 {
    		return nil
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 33.3K bytes
    - Viewed (2)
Back to top