11 lines
154 B
Go
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)
|
||
|
}
|