Esempio n. 1
0
File: parse.go Progetto: DrGo/go-xml
func parseAnnotation(el *xmltree.Element) (doc annotation) {
	if err := el.Unmarshal(&doc); err != nil {
		stop(err.Error())
	}
	return doc
}