Files
epuppy/pkg/epub/container.go
2025-10-17 14:22:03 +02:00

13 lines
288 B
Go

package epub
// Container META-INF/container.xml file
type Container struct {
Rootfile Rootfile `xml:"rootfiles>rootfile" json:"rootfile"`
}
// Rootfile root file
type Rootfile struct {
Path string `xml:"full-path,attr" json:"path"`
Type string `xml:"media-type,attr" json:"type"`
}