Files
2016-02-22 11:44:12 -08:00

11 lines
154 B
Go

package dom
type Namespace struct {
Prefix string
Uri string
}
func (ns *Namespace) SetTo(node *Element) {
node.SetNamespace(ns.Prefix, ns.Uri)
}