mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-01 15:07:17 +08:00
f0810bbe88
* import servers from libvirt * dep add libvirt-go-xml * fix code * fix code
7 lines
104 B
Go
7 lines
104 B
Go
package libvirtxml
|
|
|
|
type Document interface {
|
|
Unmarshal(doc string) error
|
|
Marshal() (string, error)
|
|
}
|