mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-22 03:32:53 +08:00
7 lines
104 B
Go
7 lines
104 B
Go
package libvirtxml
|
|
|
|
type Document interface {
|
|
Unmarshal(doc string) error
|
|
Marshal() (string, error)
|
|
}
|