Example #1
0
File: ua.go Project: h12w/gombi
func newProduct(productNode *parse.Node) *Product {
	return &Product{
		Name: productNode.Get(productName),
		Version: Version{
			Text: productNode.Get(productVersion),
		},
	}
}