コード例 #1
0
ファイル: parse.go プロジェクト: DrGo/go-xml
func parseAnnotation(el *xmltree.Element) (doc annotation) {
	if err := el.Unmarshal(&doc); err != nil {
		stop(err.Error())
	}
	return doc
}