Files
epuppy/pkg/epub/container.go

13 lines
286 B
Go
Raw Permalink Normal View History

2025-10-15 00:54:19 +02:00
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"`
}