document.go 104 B

123456
  1. package libvirtxml
  2. type Document interface {
  3. Unmarshal(doc string) error
  4. Marshal() (string, error)
  5. }