mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
10 lines
154 B
Go
10 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)
|
|
}
|