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