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