Files
epuppy/pkg/epub/container.go

13 lines
288 B
Go
Raw Normal View History

2025-10-15 00:54:19 +02:00
package epub
2025-10-17 14:22:03 +02:00
// Container META-INF/container.xml file
2025-10-15 00:54:19 +02:00
type Container struct {
Rootfile Rootfile `xml:"rootfiles>rootfile" json:"rootfile"`
}
2025-10-17 14:22:03 +02:00
// Rootfile root file
2025-10-15 00:54:19 +02:00
type Rootfile struct {
Path string `xml:"full-path,attr" json:"path"`
Type string `xml:"media-type,attr" json:"type"`
}